{ "name": "claude-mcp-bridge", "mcpName": "io.github.hampsterx/claude-mcp-bridge", "version": "0.7.1", "description": "MCP server that wraps Claude Code CLI for query, web search, structured output, and health checks", "author": "hampsterx", "license": "MIT", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "claude-mcp-bridge": "dist/index.js" }, "files": [ "dist", "prompts" ], "scripts": { "build": "tsc && node scripts/postbuild.mjs", "dev": "tsc --watch", "start": "node dist/index.js", "lint": "eslint src/ tests/", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:integration": "CLAUDE_INTEGRATION=1 vitest run tests/integration/", "smoke": "node scripts/smoke-test.mjs", "check-release": "node scripts/check-release-coherence.mjs", "prepublishOnly": "npm run check-release && npm run build" }, "keywords": [ "mcp", "claude", "claude-code", "anthropic", "ai-tools", "model-context-protocol" ], "repository": { "type": "git", "url": "git+https://github.com/hampsterx/claude-mcp-bridge.git" }, "bugs": { "url": "https://github.com/hampsterx/claude-mcp-bridge/issues" }, "homepage": "https://github.com/hampsterx/claude-mcp-bridge#readme", "engines": { "node": ">=22" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "strip-ansi": "^7.1.0", "zod": "^3.24.0" }, "overrides": { "@hono/node-server": "^2.0.12", "body-parser": "^2.3.0", "express-rate-limit": "^8.6.1", "fast-uri": "^3.1.5", "hono": "^4.12.33", "ip-address": "^10.4.0", "qs": "^6.15.3" }, "devDependencies": { "@types/node": "^22.0.0", "eslint": "^9.0.0", "typescript": "^5.7.0", "typescript-eslint": "^8.0.0", "vitest": "^3.2.7" } }