package.json•1.82 kB
{
"name": "@tyk-technologies/api-to-mcp",
"version": "1.0.0",
"description": "Generates MCP tool code from OpenAPI specs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dev": "nodemon --watch src --ext ts --exec ts-node src/server.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:integration": "jest --testMatch='**/test/integration/**/*.test.ts'"
},
"bin": {
"api-to-mcp": "./bin/api-to-mcp"
},
"files": [
"dist/**/*",
"bin",
"config.example.json",
"config.json",
"specs/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"openapi",
"mcp",
"model-context-protocol",
"generator",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.12",
"@types/supertest": "^6.0.3",
"@types/yaml": "^1.9.7",
"@types/yargs": "^17.0.32",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"vitest": "^3.1.2"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"@types/minimatch": "^5.1.2",
"axios": "^1.6.7",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^7.2.0",
"minimatch": "^9.0.3",
"node-fetch": "^2.7.0",
"nodemod": "^3.0.6",
"nodemon": "^3.1.9",
"yaml": "^2.3.4",
"yargs": "^17.7.2",
"zod": "^3.22.4"
}
}