Quokkapix MCP Server

Local-first MCP adapter and cloud-to-local execution bridge for QuokkaPix image workflows.

Remote serverstreamable-http

What is the Quokkapix MCP server?

Local-first MCP adapter and cloud-to-local execution bridge for QuokkaPix image workflows. The quokkapix mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 11 defined tools rather than through you.

What it actually does

  • prepare product photos for Shopify, Amazon, or Google Merchant;
  • validate marketplace and social image outputs against sourced rule profiles;
  • compress images to WebP for a website;
  • remove EXIF/GPS metadata;
  • generate social media image packs;
  • watermark a batch of images;

Its toolset

Everything the assistant can do here goes through one of these:

  • list_recipes — Use first when the agent does not know which workflow to run
  • get_recipe — The get_recipe tool exposed by this server
  • validate_recipe — The validate_recipe tool exposed by this server
  • list_rule_profiles — Use this when an agent needs facts for Amazon, Shopify, Google Merchant, Etsy, eBay, Walmart, TikTok Shop, Mercado Libre, Temu, Shopee, Instagram
  • get_rule_profile — Agents can pass the returned facts into their own planning, or call validate_result_manifest with ruleProfileId
  • validate_result_manifest — This is useful when an agent wants to inspect a previous run and decide whether the output is acceptable
  • process_images — It opens a browser, applies the recipe, uploads files, starts processing, downloads the output, writes quokkapix-result.json, and returns QA results
  • process_with_settings — Processes local image files using a direct QuokkaPix applySettings payload
  • get_payment_options — The get_payment_options tool exposed by this server
  • explain_payment_flow — Important: this local MCP adapter does not sign x402 payments by itself. An x402-capable client or wallet must call the paid unlock endpoint and
  • verify_unlock_token — Only use consume: true if you intentionally want to consume the unlock immediately

Configuration

You will need 4 environment variables: QUOKKAPIX_APP_URL, QUOKKAPIX_RECIPE_BASE_URL, QUOKKAPIX_PAYMENT_BASE_URL, QUOKKAPIX_ALLOW_CUSTOM_APP_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >=20 - npm - Playwright Chromium - internet access for loading QuokkaPix and browser-side dependencies/models when needed - local file paths that the MCP process can read Bridge mode additionally requires explicit input and output roots. Remote calls cannot read or write outside those roots. Install dependencies:

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Quokkapix's toolset — list_recipes, get_recipe, validate_recipe and 8 more — is a fair guide to whether it matches your workflow. It is maintained by quokkapix; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Quokkapix's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Quokkapix.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the quokkapix mcp server does with a few real requests.

Available tools

ToolWhat it does
list_recipesUse first when the agent does not know which workflow to run.
get_recipeThe get_recipe tool exposed by this server.
validate_recipeThe validate_recipe tool exposed by this server.
list_rule_profilesUse this when an agent needs facts for Amazon, Shopify, Google Merchant, Etsy, eBay, Walmart, TikTok Shop, Mercado Libre, Temu, Shopee, Instagram, YouTube, LinkedIn, X, Pinterest, Facebook or TikTok before choosing a wor
get_rule_profileAgents can pass the returned facts into their own planning, or call validate_result_manifest with ruleProfileId.
validate_result_manifestThis is useful when an agent wants to inspect a previous run and decide whether the output is acceptable.
process_imagesIt opens a browser, applies the recipe, uploads files, starts processing, downloads the output, writes quokkapix-result.json, and returns QA results.
process_with_settingsProcesses local image files using a direct QuokkaPix applySettings payload.
get_payment_optionsThe get_payment_options tool exposed by this server.
explain_payment_flowImportant: this local MCP adapter does not sign x402 payments by itself. An x402-capable client or wallet must call the paid unlock endpoint and return an unlockToken.
verify_unlock_tokenOnly use consume: true if you intentionally want to consume the unlock immediately.

How to install the Quokkapix MCP server

{
  "mcpServers": {
    "quokkapix": {
      "command": "npx",
      "args": ["-y", "quokkapix-mcp"],
      "env": {
        "QUOKKAPIX_APP_URL": "your-value",
        "QUOKKAPIX_RECIPE_BASE_URL": "your-value",
        "QUOKKAPIX_PAYMENT_BASE_URL": "your-value",
        "QUOKKAPIX_ALLOW_CUSTOM_APP_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >=20 - npm - Playwright Chromium - internet access for loading QuokkaPix and browser-side dependencies/models when needed - local file paths that the MCP process can read Bridge mode additionally requires explicit input and output roots. Remote calls cannot read or write outside those roots. Install dependencies:
VariableDescriptionRequired
QUOKKAPIX_APP_URLEndpoint or connection string the server talks to.Yes
QUOKKAPIX_RECIPE_BASE_URLEndpoint or connection string the server talks to.Yes
QUOKKAPIX_PAYMENT_BASE_URLEndpoint or connection string the server talks to.Yes
QUOKKAPIX_ALLOW_CUSTOM_APP_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Quokkapix to list recipes.
  • Use Quokkapix to get recipe.
  • Use Quokkapix to validate recipe.

Frequently asked questions

It connects Quokkapix to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (list_recipes, get_recipe, validate_recipe, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Quokkapix directly.