837 B
837 B
MCP Client Config Example
pyro-mcp is intended to be exposed to LLM clients through the public pyro CLI.
Generic stdio MCP configuration using uvx:
{
"mcpServers": {
"pyro": {
"command": "uvx",
"args": ["--from", "pyro-mcp", "pyro", "mcp", "serve"]
}
}
}
If pyro-mcp is already installed locally, the same server can be configured with:
{
"mcpServers": {
"pyro": {
"command": "pyro",
"args": ["mcp", "serve"]
}
}
}
Primary tool for most agents:
vm_run
Use lifecycle tools only when the agent needs persistent VM state across multiple tool calls.
Concrete client-specific examples:
- Claude Desktop: examples/claude_desktop_mcp_config.json
- Cursor: examples/cursor_mcp_config.json