planetary-mcp-server
Version:
🌍 Earth Engine MCP Server for Claude Desktop - Powerful geospatial analysis with simple commands
15 lines (12 loc) • 383 B
TypeScript
declare module '@vercel/mcp-adapter' {
export interface McpServerOptions {
tools: {
listTools: () => Promise<{ tools: Array<{ name: string; description: string }> }>;
callTool: (name: string, input: any) => Promise<any>;
};
}
export interface McpServer {
sse(): Response;
}
export function createMcpServer(options: McpServerOptions): McpServer;
}