Execute agents directly via REST API. Simple authentication, powerful orchestration.
curl -X POST https://api.puzld.cc/mcp/execute \ -H "X-PUZLD-API-KEY: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "action": "run", "prompt": "Hello world", "agent": "claude" }'
Everything you need to build powerful integrations.
Trigger your local Puzld agents from anywhere. The API bridges to your machine, keeping execution local while access stays global.
Route requests to any agent CLI configured locally. Claude Code, Codex, Gemini CLI, Mistral Vibe, or Ollama—same API call.
Built on the Model Context Protocol. Use Puzld as an MCP server from Claude, Cursor, or any MCP-compatible client.
/mcp/executeExecute an agent with a given prompt and configuration.
{
"action": "run",
"prompt": "Your prompt here",
"agent": "claude"
}{
"success": true,
"result": "Agent response...",
"usage": {
"tokens": 150
}
}X-PUZLD-API-KEY: your_api_keyContent-Type: application/json