package.json•1.5 kB
{
"name": "@yuuzu/swagger-mcp",
"version": "1.1.21",
"description": "MCP server for exposing Swagger/OpenAPI endpoints as tools",
"main": "dist/index.js",
"scripts": {
"win": "tsc",
"build": "tsc && chmod 755 dist/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"swagger",
"openapi",
"api",
"tools"
],
"author": "Yuuzu",
"repository": {
"type": "git",
"url": "git+https://github.com/nakiriyuuzu/swagger-mcp.git"
},
"bugs": {
"url": "https://github.com/nakiriyuuzu/swagger-mcp/issues"
},
"homepage": "https://github.com/nakiriyuuzu/swagger-mcp#readme",
"bin": {
"swagger-mcp-server": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"package.json"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"axios": "^1.11.0",
"openapi-types": "^12.1.3",
"swagger-parser": "^10.0.3",
"zod": "^3.24.1",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"jest": "^30.0.5",
"@types/jest": "^30.0.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}