We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ProfSynapse/nexus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•808 B
// Main router
export { RequestRouter } from './RequestRouter';
// Interfaces
export type * from './interfaces/IRequestHandlerServices';
// Services
export { ValidationService } from './services/ValidationService';
export { SessionService } from './services/SessionService';
export { ToolExecutionService } from './services/ToolExecutionService';
export { ResponseFormatter } from './services/ResponseFormatter';
export { ToolListService } from './services/ToolListService';
// Strategies
export type { IRequestStrategy } from './strategies/IRequestStrategy';
export { ToolExecutionStrategy } from './strategies/ToolExecutionStrategy';
export { ToolListStrategy } from './strategies/ToolListStrategy';
// All request handling is now done through RequestRouter using the strategy pattern