feat: add generic mcp-bridge for proxying upstream MCP SSE servers

- Add mcp-bridge/index.js: WebSocket backend for hub, relays requests
  to upstream MCP SSE servers via SSE+POST transport
- Add mcp-bridge/package.json with 'ws' dependency
- Add 'mcp-bridge-memory' entry to ecosystem.config.js (not started)
- Add 'bridge' script to root package.json
- Add mcp-bridge/node_modules to .gitignore

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Agent 2026-03-13 10:19:27 +00:00
parent 85b3f5b6e2
commit f2f64ec392
6 changed files with 350 additions and 0 deletions

13
mcp-bridge/package.json Normal file
View file

@ -0,0 +1,13 @@
{
"name": "mcp-bridge",
"version": "1.0.0",
"description": "Generic MCP SSE bridge for the MCP hub",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"ws": "^8.19.0"
},
"license": "ISC"
}