We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/okets/folder-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
HelpSystemService.ts•462 B
/**
* Temporary stub for Help System Service
* TODO: Remove when help system is updated to use new config system
*/
export class HelpSystemService {
constructor() {}
getCommands(): any[] {
return [];
}
getCommandHelp(command: string): any {
return null;
}
formatHelp(help: any): string {
return '';
}
generateContextualHelp(context: any): string {
return '';
}
getConfigurationHelpInfo(): any {
return null;
}
}