{ "name": "specshield-mcp-server", "version": "1.1.1", "mcpName": "io.github.specshield-io/specshield-mcp-server", "description": "SpecShield MCP server — the API-change deploy gate for AI coding agents. Ask 'is it safe to ship this API change to my consumers?' inside Claude, Cursor, and other MCP clients. Analyze-only; it never modifies code.", "license": "MIT", "author": "SpecShield Software Private Limited", "homepage": "https://specshield.io", "repository": { "type": "git", "url": "git+https://github.com/specshield-io/specshield-mcp-server.git" }, "bugs": { "url": "https://github.com/specshield-io/specshield-mcp-server/issues" }, "type": "module", "engines": { "node": ">=20.0.0" }, "bin": { "specshield-mcp": "dist/index.js" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc -p tsconfig.json", "start": "node dist/index.js", "dev": "tsx src/index.ts", "test": "vitest run", "test:watch": "vitest", "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "smoke": "node scripts/smoke.mjs", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "model-context-protocol", "openapi", "api", "breaking-changes", "contract-compatibility-testing", "can-i-deploy", "deploy-gate", "specshield", "claude", "cursor" ], "dependencies": { "@modelcontextprotocol/sdk": "^1.29.0", "zod": "^3.23.8" }, "devDependencies": { "@eslint/js": "^9.7.0", "@types/node": "^20.14.0", "eslint": "^9.7.0", "prettier": "^3.3.0", "tsx": "^4.16.0", "typescript": "^5.5.0", "typescript-eslint": "^8.0.0", "vitest": "^2.0.0" } }