We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.ts•398 B
/**
* Standalone si-mcp-server binary entry point
*
* This is a thin wrapper that imports from the vendored MCP server code
* in bin/si/src/mcp-server/ (which is the source of truth).
*
* The same code is also bundled into the si CLI binary and available
* via `si mcp-server stdio`.
*/
import { run } from "../si/src/ai-agent/mcp-server/cli.ts";
if (import.meta.main) {
await run();
}