We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/xydong-web/mcp-nexus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { app } from './app.js';
import type { Env } from './env.js';
// Re-export Durable Object classes
export { McpSession } from './mcp/mcpSession.js';
export { RateLimiter } from './rateLimit/rateLimiter.js';
// Export the worker handler
export default {
async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
return app.fetch(request, env, ctx);
},
};