Skip to main content
Glama

MCP Documentation Server

by mahawi1992
BraveSearchIntegration.ts1.13 kB
if (context.fileTypes) { filters.fileType = context.fileTypes; } return filters; } // Specialized documentation handlers public async searchApiDocumentation(api: string): Promise<any> { return this.searchDocumentation(`${api} API documentation`, { filters: { fileType: ['json', 'yaml', 'md'] } }); } public async searchErrorSolutions(error: string, context: any): Promise<any> { const enhancedQuery = `${error} solution ${context.framework || ''} ${context.language || ''}`; return this.searchDocumentation(enhancedQuery, { filters: { site: ['stackoverflow.com', 'github.com'] } }); } public async searchTutorials(topic: string, context: any): Promise<any> { const enhancedQuery = `${topic} tutorial ${context.framework || ''} ${context.level || 'beginner'}`; return this.searchDocumentation(enhancedQuery, { filters: { timeRange: 'year' // Only recent tutorials } }); } }

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/mahawi1992/mcp-documentation-server'

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