{
  "name": "claude-mcp",
  "version": "2.4.1",
  "description": "An MCP server that allows AI tools to interact with Claude Code programmatically with session continuity and async execution support.",
  "author": "Evgenij (Eugene) Beloded <belodedevgenij@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ebeloded/claude-mcp.git"
  },
  "homepage": "https://github.com/ebeloded/claude-mcp#readme",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "claude-code",
    "ai",
    "llm",
    "agent",
    "async",
    "conversation-continuity",
    "code-analysis"
  ],
  "type": "module",
  "main": "dist/server.js",
  "bin": {
    "claude-mcp": "dist/server.js"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/server.js",
    "dev": "npm run build && node dist/server.js",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@anthropic-ai/claude-code": "^1.0.98",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "zod": "^3.22.2"
  },
  "devDependencies": {
    "@types/node": "^22.15.17",
    "@vitest/ui": "^3.1.3",
    "typescript": "^5.0.0",
    "vitest": "^3.1.3"
  }
}
