package.json•1.2 kB
{
"name": "swagger-mcp",
"version": "2.0.0",
"description": "一个支持Swagger 2.0的MCP服务器,可以将任何Swagger API转换为MCP工具",
"main": "src/index.js",
"type": "module",
"bin": {
"swagger-mcp-server": "bin/swagger-mcp.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"build": "echo 'No build step needed for this project'",
"prepublishOnly": "npm test",
"test": "echo 'Tests not implemented yet'"
},
"keywords": [
"mcp",
"swagger",
"openapi",
"api",
"server",
"model-context-protocol",
"ai-tools"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/swiftsimplify/swagger-mcp.git"
},
"bugs": {
"url": "https://github.com/swiftsimplify/swagger-mcp/issues"
},
"homepage": "https://github.com/swiftsimplify/swagger-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"bin/",
"config.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}