mcp-hub-001: Project scaffolding and core server

This commit is contained in:
Agent 2026-03-12 16:44:37 +00:00
parent 2b557e1eca
commit 60d92af13b
6 changed files with 916 additions and 0 deletions

6
src/index.js Normal file
View file

@ -0,0 +1,6 @@
const app = require('./server');
const config = require('./config');
app.listen(config.PORT, () => {
console.log(`MCP relay hub listening on port ${config.PORT}`);
});