We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jakedx6/helios9-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
interface MCPTool {
name: string;
description: string;
inputSchema: any;
}
/**
* Universal search across all data types
*/
export declare const universalSearchTool: MCPTool;
export declare const universalSearch: (args: any) => Promise<any>;
/**
* Advanced semantic search
*/
export declare const semanticSearchTool: MCPTool;
export declare const semanticSearch: (args: any) => Promise<{
original_query: string;
expanded_query: string;
context_type: "meeting_notes" | "project_context" | "general" | "technical_documentation" | "code_related";
similarity_threshold: number;
results: any[];
total_matches: number;
}>;
/**
* Search suggestions and autocomplete
*/
export declare const getSearchSuggestionsTool: MCPTool;
export declare const getSearchSuggestions: (args: any) => Promise<any>;
/**
* Smart search analytics
*/
export declare const getSearchAnalyticsTool: MCPTool;
export declare const getSearchAnalytics: (args: any) => Promise<any>;
export declare const intelligentSearchTools: {
universalSearchTool: MCPTool;
semanticSearchTool: MCPTool;
getSearchSuggestionsTool: MCPTool;
getSearchAnalyticsTool: MCPTool;
};
export declare const intelligentSearchHandlers: {
universal_search: (args: any) => Promise<any>;
semantic_search: (args: any) => Promise<{
original_query: string;
expanded_query: string;
context_type: "meeting_notes" | "project_context" | "general" | "technical_documentation" | "code_related";
similarity_threshold: number;
results: any[];
total_matches: number;
}>;
get_search_suggestions: (args: any) => Promise<any>;
get_search_analytics: (args: any) => Promise<any>;
};
export {};