🚀 Pixloop MCP Server

Model Context Protocol server for Pixloop workflow automation

✅ Server Online

Available Tools (10)

list_workflows
List all available workflows. Returns workflow metadata including ID, name, description, and node count.
get_workflow
Get workflow details including required input schema. Call this BEFORE execute_workflow to discover what inputs are needed (node IDs, types, labels). Returns the input nodes and their configurations.
get_workflow_skills
Load workflow creation knowledge including node types, model selection, and API patterns. ALWAYS call this before creating or executing workflows to ensure you have the complete specification.
get_creative_skills
Load ad production knowledge including creative brief structure, character handling, and workflow recipes. Call this BEFORE get_workflow_skills when creating ad workflows to understand production patterns.
create_workflow
Create a new workflow from nodes and edges definition. IMPORTANT: For ad creation, call get_creative_skills first, then get_workflow_skills to load complete specifications. Without these, you will use incorrect IDs and patterns.
update_workflow
Update an existing workflow. Can modify name, description, or definition.
delete_workflow
Delete a workflow permanently. This cannot be undone.
execute_workflow
Execute a workflow with custom inputs. IMPORTANT: Call get_workflow first to see the required input schema and node IDs. Input keys must match node IDs from the workflow definition. Returns a run ID to track execution status.
get_workflow_run
Get the status and results of a workflow execution. Check this periodically to monitor progress and get final outputs.
list_workflow_runs
List recent workflow runs. Useful for finding previous executions and their results.

Quick Start

  1. Get your API key from pixloop.ai/settings
  2. Configure Claude Desktop:
📝 Claude Desktop Config
~/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"
        }
      }
    }
  }
}
  1. Restart Claude Desktop
  2. Start using Pixloop tools in your conversations!

Example Usage

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]

API Endpoints

Test the API

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}}'