Skip to main content
Glama

Physics MCP Server

by BlinkZer0
handlers.d.ts1.28 kB
/** * Phase 6: ML/AI Augmentation Tool Handlers * Routes ML method calls to Python worker implementations */ import { MLAugmentationResponse, SymbolicRegressionParams, SurrogatePDEParams, PatternRecognitionParams, ExplainDerivationParams } from './schema.js'; type WorkerClient = { call: (method: string, params: Record<string, unknown>) => Promise<unknown>; }; /** * Main handler for ML/AI augmentation tool * Routes to appropriate method based on the method parameter */ export declare function handleMLAugmentationTool(toolName: string, args: Record<string, unknown>): Promise<MLAugmentationResponse>; /** * Legacy support for individual method calls * Maintains backward compatibility if individual tools were used */ export declare function createLegacyHandlers(pythonWorker: WorkerClient): { handleSymbolicRegressionTrain(params: Omit<SymbolicRegressionParams, "method">): Promise<MLAugmentationResponse>; handleSurrogatePDETrain(params: Omit<SurrogatePDEParams, "method">): Promise<MLAugmentationResponse>; handlePatternRecognitionInfer(params: Omit<PatternRecognitionParams, "method">): Promise<MLAugmentationResponse>; handleExplainDerivation(params: Omit<ExplainDerivationParams, "method">): Promise<MLAugmentationResponse>; }; export {};

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/BlinkZer0/Phys-MCP'

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