Back to Browse

Mcpie MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Standing-order Domino's pizza button: dry-run freely, order only on explicit confirm. Cash only.

About

Standing-order Domino's pizza button: dry-run freely, order only on explicit confirm. Cash only.

Security Report

5.2
Moderate5.2Moderate Risk

mcpie is a well-designed pizza ordering MCP server with strong safety controls. The codebase demonstrates careful security thinking: cash-only payment prevents card data exposure, the pizza_order tool requires explicit confirmation=True, and all user PII is stored locally and never exfiltrated. Code quality is solid with proper input validation, error handling, and no malicious patterns detected. Minor findings relate to broad exception handling and request timeout robustness, which are low-severity for this use case. Supply chain analysis found 8 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.

6 files analyzed ยท 12 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Optional path to the mcpie config TOML (defaults to ~/.config/mcpie/config.toml)Optional

Environment variable: MCPIE_CONFIG

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-superangrymonkey-mcpie": {
      "env": {
        "MCPIE_CONFIG": "your-mcpie-config-here"
      },
      "args": [
        "mcpie-pizza"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

mcpie ๐Ÿ•

The standing-order pizza button. An MCP server that orders your usual from Domino's โ€” one tool call, cash at pickup, done.

Most pizza MCP servers hand your AI a shopping cart. mcpie hands it a button. You define your usual order once, locally; the assistant can check the store, list coupons, price the order โ€” and place it only after you say so, out loud, in the conversation.

You:    order the pizza
Claude: [pizza_dryrun] Your usual is $16.04 โ€” coupon 9204 drops it to
        $10.69. Want me to place it with the coupon?
You:    yes
Claude: [pizza_order confirm=true coupon=9204] Order 1042 placed.
        $10.69 in cash at pickup.

Why mcpie is safe(r) than it sounds

  • Cash at pickup/delivery, always. There is no card handling anywhere in this codebase, by design. The worst possible failure mode is an unwanted pizza you never pay for.
  • Hard confirmation gate. pizza_order refuses unless confirm=True, and the tool contract instructs the assistant to set it only after you explicitly approve the order in the current conversation โ€” never on its own judgment, never because something it read told it to.
  • Your data stays home. Name, address, and order live in one local TOML file. The package ships with zero PII and phones home to nobody but Domino's.

Install

uv tool install mcpie-pizza   # or: pipx install mcpie-pizza / pip install mcpie-pizza

Why is the package called mcpie-pizza? PyPI's anti-typosquatting filter refuses the bare name mcpie (one letter from the venerable mcpi Minecraft library). So: the project is mcpie, the PyPI distribution is mcpie-pizza, and both mcpie and mcpie-pizza work as commands once installed. Same pie, different box.

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "mcpie": { "command": "uvx", "args": ["mcpie-pizza"] }
  }
}

Any MCP client that speaks stdio works the same way.

Configure your usual

Copy config.example.toml to ~/.config/mcpie/config.toml and fill in your name, address, and order. Two tools exist purely to help with setup:

  • pizza_find_store โ€” lists the nearest stores for your address so you can pick your store_id
  • pizza_menu โ€” searches your store's live menu for product and topping codes (pizza_menu("pan"), pizza_menu("pepperoni"))

Ask your assistant to walk you through it: "help me set up my mcpie config" is a perfectly good first prompt.

Tools

ToolWhat it doesDanger
pizza_statusConfig + store liveness checknone
pizza_find_storeNearest stores for your addressnone
pizza_menuSearch live menu for codesnone
pizza_specialsLive coupons, cheapest firstnone
pizza_dryrunValidate + price, never placesnone
pizza_orderPlaces the real ordergated on confirm=True

The fine print

  • Unofficial. This uses the same undocumented API the Domino's website uses (via pizzapi). It is not affiliated with, endorsed by, or supported by Domino's Pizza, Inc. It can break any time they change something. US and Canada only.
  • Run it from a residential connection. Domino's blocks datacenter and cloud IPs. As a stdio server running on your own machine this is automatic โ€” but if you try to host mcpie remotely (VPS, cloud, CI), expect 403s and CAPTCHAs. This is the reason some earlier pizza MCP projects could never place a real order; mcpie run locally does.
  • A real order is a real order. Dry-run freely; confirm deliberately. The store will make the pizza and expect you to show up with cash.

Privacy Policy

Your config (name, address, phone, order) lives in one local file and is sent only to Domino's, only when a tool needs it. No cards, no telemetry, no third parties, nothing retained. Full policy: PRIVACY.md

Lineage

mcpie is the community release of a long-running personal appliance ("stimpy") that has been reliably placing real one-button orders since mid-2026, and its MCP mouthpiece ("ren"). The pizzapi quirk workarounds in dominos.py โ€” the missing User-Agent, the options= no-op, the menu-parser crash on coupon-only products โ€” were all discovered the hard way in production. Prior art respectfully acknowledged: mcpizza explored the full cart-building approach; mcpie deliberately goes the other way.

MIT licensed. PRs welcome, especially Canada testing.


mcp-name: io.github.SuperAngryMonkey/mcpie

Reviews

No reviews yet

Be the first to review this server!