We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TGM-Ventures/beeboo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•358 B
#!/usr/bin/env node
/**
* BeeBoo MCP Server
*
* Model Context Protocol server exposing BeeBoo's Human-in-the-Loop
* infrastructure to AI agents like Claude, Cursor, and Windsurf.
*
* Usage:
* BEEBOO_API_KEY=bb_sk_xxx node index.js
*
* Or via npx:
* npx @beeboo/mcp-server
*/
import { startServer } from './src/server.js';
startServer();