package.json•997 B
{
"name": "specbridge",
"version": "1.0.0",
"description": "An MCP server that bridges OpenAPI specifications to MCP tools - scan a folder for spec files and automatically generate corresponding tools",
"main": "dist/index.js",
"bin": {
"specbridge": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "npm run build && node dist/cli.js --help",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"openapi",
"swagger",
"api",
"tools",
"bridge",
"fastmcp",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"axios": "^1.6.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"fastmcp": "^3.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}