We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Ranjith63812/MCP-SERVER'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.d.ts•527 B
/**
* Tool Registry
* Central registry of all available tools and handlers
*/
import { MCPTool } from "../types/index.js";
/**
* Get all registered tool definitions
*/
export declare function getToolDefinitions(): MCPTool[];
/**
* Call a tool handler by name
*/
export declare function callTool(toolName: string, args: Record<string, unknown>): Promise<string | Record<string, unknown>>;
/**
* Check if a tool exists
*/
export declare function toolExists(toolName: string): boolean;
//# sourceMappingURL=index.d.ts.map