Skip to main content
Glama

Captain Data MCP API

start.ts611 B
import { buildServer } from './build'; import { config } from '../lib/config'; export async function startDevServer() { const app = await buildServer(); await app.ready(); // Generate spec AFTER ready, only if swagger registered if ((app as any).swagger) { app.swagger(); } await app.listen({ port: config.port, host: '0.0.0.0' }); const addr = app.server.address(); const port = typeof addr === 'string' ? config.port : addr?.port; app.log.info(`🚀 Server listening on ${port}`); if ((app as any).swagger) { app.log.info(`📚 Docs at http://localhost:${port}/docs`); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/captaindatatech/captaindata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server