Add LogicSRC standards MCP server

This commit is contained in:
Anthony Ettinger 2026-06-06 14:22:43 +00:00
parent 4e4c78140d
commit dd150f391a
26 changed files with 2250 additions and 15 deletions

View file

@ -0,0 +1,12 @@
#!/usr/bin/env node
import { pathToFileURL } from "node:url";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { createLogicSrcMcpServer } from "./server.js";
export { createLogicSrcMcpServer } from "./server.js";
if (process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href) {
const server = createLogicSrcMcpServer();
const transport = new StdioServerTransport();
await server.connect(transport);
}