package.json•1.45 kB
{
"name": "openapi-mcp-proxy",
"version": "0.0.2",
"description": "CLI tool to create an MCP server exposing services from an OpenAPI specification",
"repository": {
"type": "git",
"url": "https://github.com/JacerOmri/openapi-mcp-proxy"
},
"main": "dist/cli.js",
"bin": {
"openapi-mcp-proxy": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint --fix src/**/*.ts",
"prepublishOnly": "pnpm build",
"start": "ts-node src/cli.ts",
"test": "jest"
},
"keywords": [
"cli",
"mcp",
"openapi",
"proxy",
"rest",
"server"
],
"author": "Jacer Omri",
"license": "MIT",
"packageManager": "pnpm@10.6.3",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"@n8n/json-schema-to-zod": "^1.1.0",
"@readme/openapi-parser": "^4.0.0",
"commander": "^13.1.0",
"express": "^5.1.0",
"oas": "^27.0.0",
"oas-normalize": "^14.0.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.14.1",
"@types/supertest": "^6.0.3",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0"
}
}