mirror of
https://github.com/aljazceru/mcp-gateway.git
synced 2025-12-17 05:04:24 +01:00
- 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.
27 lines
527 B
JSON
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"
|
|
}
|
|
}
|