Documentation Index
Fetch the complete documentation index at: https://docs.podflare.ai/llms.txt
Use this file to discover all available pages before exploring further.
Config
Edit~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Tools
Claude will see these as hammer-icon tools in the composer:run_python— REPL-persistent Pythonrun_bash— fresh shellfork— N-way CoW forkdiff,merge_intoupload,download
Usage
Ask Claude to use a tool naturally:“Use run_python to load /data/customers.csv with pandas and tell me the top 5 regions by revenue.”Claude invokes the tool, the MCP server routes to Podflare, the sandbox runs the code, and the result flows back.
Session model
Each Claude conversation gets one Podflare sandbox, created on first tool call and destroyed when Claude Desktop quits the MCP server. Reopening a conversation starts a new sandbox — prior in-memory state is lost.Troubleshooting
Tools don't appear
Tools don't appear
Check Claude Desktop’s logs at
~/Library/Logs/Claude/mcp-server-podflare.log.
Usually means podflare-hostd isn’t reachable at PODFLARE_HOSTD_URL.Tool calls time out
Tool calls time out
The MCP server has a 5-minute default. Long-running code inside the
sandbox can exceed this. Consider using
fork to parallelize.
