We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BlinkZer0/Phys-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Data I/O tools for scientific formats
*/
interface Tool {
name: string;
description: string;
inputSchema: any;
}
export declare const tools: Tool[];
export * from './schema.js';
export * from './handlers.js';
export declare function buildDataIOTools(): Tool[];
export declare function handleDataIOTool(name: string, args: any): Promise<any>;