Files
mcp-gateway/package.json
Acehoss fd9a8c999c REST API Support and OpenAPI Schema Generation
- Introduced REST API endpoints for session management and tool invocation, allowing HTTP clients to interact with MCP servers.
- Updated `README.md` to document new REST API features, including usage examples and OpenAPI schema generation.
- Added `@types/yargs` and `uuid` as dependencies in `package.json` and `package-lock.json` for improved command-line argument parsing and unique session ID generation.
- Enhanced session management with automatic cleanup of expired sessions in the gateway.
2024-12-19 18:04:29 +00:00

27 lines
527 B
JSON

{
"name": "mcp-gateway",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "tsx src/gateway.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"tsx": "^4.19.2"
}
}