Model Context Protocol server for Pixloop workflow automation
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"pixloop": {
"transport": {
"type": "http",
"url": "https://mcp.pixloop.ai",
"headers": {
"Authorization": "Bearer sk_live_YOUR_API_KEY"
}
}
}
}
}
You: "List my Pixloop workflows"
Claude: [calls list_workflows tool]
You: "Create a new workflow called 'Product Ad Generator'"
Claude: [calls create_workflow tool]
You: "Execute workflow wf_abc123 with prompt 'Nike sneaker ad'"
Claude: [calls execute_workflow tool]
GET / - This documentation pageGET /health - Server health check (JSON)GET /tools - List available tools (JSON)POST /execute - Execute a tool (JSON)curl -X POST https://mcp.pixloop.ai/execute \
-H "Authorization: Bearer sk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"tool":"list_workflows","arguments":{"limit":5}}'