singularity-forge/packages/mcp-server/package.json
2026-04-15 13:38:15 +02:00

46 lines
1 KiB
JSON

{
"name": "@singularity-forge/mcp-server",
"version": "2.74.0",
"description": "MCP server exposing sf-run orchestration tools for Claude Code, Cursor, and other MCP clients",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/singularity-forge/sf-run.git",
"directory": "packages/mcp-server"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"sf-mcp-server": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/mcp-server.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@singularity-forge/rpc-client": "^2.74.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"!dist/**/*.test.*"
]
}