{ "name": "@tessera-llm/mcp-server", "mcpName": "io.tesseraai/mcp-server", "version": "0.1.3", "description": "MCP server exposing Tessera's LLM cost optimization layer as tools for Claude Desktop, Claude Code, Cursor, Cline, Continue, and other MCP-aware clients. Returns savings decisions (anchored spend, drift detection, recommendation approval), not raw logs.", "keywords": [ "mcp", "model-context-protocol", "tessera", "llm", "cost-optimization", "ai-cost", "llm-cost", "claude", "cursor", "openai", "anthropic", "savings", "anthropic-claude", "typescript" ], "homepage": "https://tesseraai.io/dev", "repository": { "type": "git", "url": "git+https://github.com/tessera-llm/mcp-server.git", "directory": "node" }, "bugs": { "url": "https://github.com/tessera-llm/mcp-server/issues" }, "license": "Apache-2.0", "author": "Tessera (Fintechagency OÜ) ", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "tessera-mcp-server": "./dist/cli.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./server": { "types": "./dist/server.d.ts", "import": "./dist/server.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsup src/index.ts src/cli.ts src/server.ts --format esm,cjs --dts --clean --target node18", "start": "node dist/cli.js", "dev": "tsx src/cli.ts", "test": "vitest run", "typecheck": "tsc --noEmit", "static-scan": "node scripts/static-scan.mjs", "copy-docs": "node scripts/copy-docs.mjs", "prepack": "npm run copy-docs", "prepublishOnly": "npm run build && npm test && npm run static-scan" }, "engines": { "node": ">=18" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.24.0", "express": "^5.2.1", "zod": "^3.23.0" }, "devDependencies": { "@types/express": "^5.0.6", "@types/node": "^22.0.0", "ajv": "^8.20.0", "ajv-formats": "^3.0.1", "tsup": "^8.3.0", "tsx": "^4.19.0", "typescript": "^5.7.0", "vitest": "^2.1.0" }, "publishConfig": { "access": "public" } }