feat: initialize monorepo with shared, server, mcp, and web packages
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
15
packages/mcp/src/index.ts
Normal file
15
packages/mcp/src/index.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import express from 'express';
|
||||
import cors from 'cors';
|
||||
|
||||
const app = express();
|
||||
app.use(cors());
|
||||
app.use(express.json());
|
||||
|
||||
app.get('/health', (_req, res) => {
|
||||
res.json({ status: 'ok' });
|
||||
});
|
||||
|
||||
const port = process.env.MCP_PORT || 3001;
|
||||
app.listen(port, () => {
|
||||
console.log(`MCP service running on port ${port}`);
|
||||
});
|
||||
Reference in New Issue
Block a user