⚙️
MCP Tool MCP

dispatch

About

Dispatches a reconstruction job to the PWM compute mesh (CPU/GPU). Returns a job_id for polling with result().

Capabilities

Job dispatch CPU/GPU routing ETA estimate

MCP Tool Specification

Input

spec_id: str, solver: str, data_url: str

Output

job_id: str, eta_s: int

Usage in Claude Code

// Add PWM as MCP server in ~/.claude/mcp.json:
{
  "mcpServers": {
    "pwm": {
      "url": "https://physicsworldmodel.org/mcp"
    }
  }
}

// Then in Claude Code:
mcp__pwm__dispatch({ spec_id: str, solver: str, data_url: str })
Back to Agents