We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cameroncooke/XcodeBuildMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp.ts•346 B
import type { Argv } from 'yargs';
import { startMcpServer } from '../../server/start-mcp-server.ts';
/**
* Register the `mcp` command to start the MCP server.
*/
export function registerMcpCommand(app: Argv): void {
app.command('mcp', 'Start the MCP server (for use with MCP clients)', {}, async () => {
await startMcpServer();
});
}