{
  "name": "@tokenometer/mcp",
  "version": "2.2.0",
  "description": "Model Context Protocol server for tokenometer — lets AI agents self-monitor LLM token spend, estimate costs, and budget-check before sending prompts.",
  "license": "MIT",
  "author": "Faraazuddin Mohammed <mohdfaraaz1@gmail.com>",
  "homepage": "https://tokenometer.dev",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/faraa2m/tokenometer.git",
    "directory": "packages/mcp"
  },
  "bugs": {
    "url": "https://github.com/faraa2m/tokenometer/issues"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai",
    "agent",
    "llm",
    "tokens",
    "cost",
    "budget",
    "anthropic",
    "openai",
    "claude",
    "gpt",
    "gemini",
    "mistral",
    "cohere"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "tokenometer-mcp": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": ["dist", "README.md"],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc -b && chmod +x dist/index.js",
    "prepack": "chmod +x dist/index.js",
    "clean": "rm -rf dist"
  },
  "dependencies": {
    "@tokenometer/core": "2.2.0",
    "@modelcontextprotocol/sdk": "^1.0.4",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.23.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.5",
    "typescript": "^5.7.2",
    "vitest": "^4.1.8"
  }
}
