mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-02-19 11:54:58 -05:00
- bump TS SDK to 1.18.0 * In src/everything/stdio.ts - remove logging related imports - remove custom log-level handling, now handled automatically by the SDK * In src/everything/everything.ts - remove console.log of sessionId
28 lines
671 B
JavaScript
28 lines
671 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
import { createServer } from "./everything.js";
|
|
|
|
console.error('Starting default (STDIO) server...');
|
|
|
|
async function main() {
|
|
const transport = new StdioServerTransport();
|
|
const {server, cleanup, startNotificationIntervals} = createServer();
|
|
|
|
await server.connect(transport);
|
|
startNotificationIntervals();
|
|
|
|
// Cleanup on exit
|
|
process.on("SIGINT", async () => {
|
|
await cleanup();
|
|
await server.close();
|
|
process.exit(0);
|
|
});
|
|
}
|
|
|
|
main().catch((error) => {
|
|
console.error("Server error:", error);
|
|
process.exit(1);
|
|
});
|
|
|