roastify-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@roastify-mcpWhat coffee blends are in stock?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
roastify-mcp
A Tollbooth DPYC operator for the Roastify Developer API. Roastify is a white-label coffee dropshipper: it roasts, prints branded packaging, and ships direct to customers.
This operator lets an AI agent read the Roastify catalog and generate packaging artwork, paid for in Bitcoin Lightning satoshis with no account, no KYC, and no subscription.
What you're building
YOU (operator, human in the loop)
│ │
│ set & tune prices │ drive credential intake
▼ ▼
┌───────────────┐ ┌──────────────────────────────────────────────┐
│ Pricing Studio│ prices │ Roastify — YOUR OPERATOR MCP │
│ (iOS) ├───────▶│ FastMCP · deployed on Horizon │
└───────────────┘ Neon │ ┌────────────────────────────────────────┐ │
│ │ roastify domain module ◀─ Roastify API │ │
Patron (Citizen) │ │ @runtime.paid_tool(FROZEN_UUID) tools │ │
+ MCP client ─────────▶│ ├────────────────────────────────────────┤ │
(Claude, etc.) npub │ │ tollbooth-dpyc SDK (the wheel) │ │
+sats │ │ ledger · vault (AES-256-GCM) · pricing │ │
│ │ /ConstraintGate · Secure Courier·audit │ │
│ └────────────────────────────────────────┘ │
└───┬─────────┬──────────┬───────────┬─────────┘
▼ ▼ ▼ ▼
Neon Postgres BTCPay▶ Sponsor Nostr relays
(your schema) Lightning Authority proofs·courier
ledger+pricing invoices certify + DMs·audit
provision │
api.roastify.app ◀── domain │ ▼
(each patron's calls └──▶ DPYC Oracle +
own API key) dpyc-communityOnboarding roadmap
Nostr keypair — generate one (
nak key generate). The nsec is the only env var:TOLLBOOTH_NOSTR_OPERATOR_NSEC.Sponsor Authority — register; it provisions your Neon schema automatically.
Secure Courier — deliver your BTCPay secrets (
btcpay_host,btcpay_api_key,btcpay_store_id) by Nostr DM. They are vaulted, never put in the environment.Set prices in Pricing Studio — see below. Tools start unpriced and uncallable.
Deploy on Prefect Horizon —
.fastmcp.yamlis ready.
Get Pricing Studio
Your tools ship unpriced, and nobody can call a paid tool that has no price. Pricing Studio (iOS) is the operator console: it reads and writes the pricing model live in Neon, so prices never live in code — see tollbooth-pricing-studio.
That indirection is the point. Dynamic per-tool pricing — surge, happy-hour, loyalty discounts, free trials for a first-time patron — is what DPYC gives you that a flat paywall never could.
Related MCP server: rustchain-mcp
Bring your own Roastify key
Every patron delivers their own Roastify API key through the Secure Courier, vaulted per npub. There is no operator-held key and no fallback path.
This follows from the domain rather than being a policy choice. Roastify scopes the catalog, saved designs, and plan tier to the merchant account behind the key — a patron on Base sees a different catalog than one on Pro. A single operator-held key would hand one merchant's world to every caller, which is a wrong answer rather than a limitation to work around. It also means this operator never holds a credential it could misuse, and revoking your key in the Merchant App severs access without involving the operator.
roastify_get_patron_onboarding_status # what's missing
roastify_request_patron_credentials # → you get a Nostr DM
(reply with your Roastify API key)
roastify_receive_patron_credentials # vaulted, encrypted at restLive keys start rty_live_. Sandbox keys start rty_test_ and do not fulfill — useful for
exercising the read tools without touching production.
Tools
Tool | Tier | What it does |
| read | Catalog products and coffee blends together, plan tier marked |
| read | One product with variants, prices, stock, dieline template |
| read | One blend: roast level, decaf status, variants |
| read | Your saved designs, cursor-paginated |
| read | One saved design in full |
| read | Stock for one SKU or the whole list |
| heavy | Generate artwork from a saved design → claim check |
| read | Redeem the claim check |
| read | Poll a Roastify job directly by upstream job id |
Plus the standard DPYC catalog (balance, purchase, courier, pricing, Oracle, status).
What this operator does not do, and why
It cannot create, update, delete, or sync products. Not a missing feature — the Roastify
API has no such endpoints. /v1/products is read-only, and the words integration, sync,
shopify, and upload do not appear anywhere in the
OpenAPI spec. Saved products and storefront sync are
Merchant App capabilities by design.
It does not place orders. Roastify already routes orders to its own operations and reports tracking back to your storefront. An MCP layer between those adds a hop without adding judgment, so order automation is deliberately left to Shopify and Roastify.
Artwork generation is template personalization, not design. roastify_generate_artwork
rewrites the named text and image placeholders of a design you already authored in the
Roastify Design Studio. It cannot author a design from scratch.
A generated artwork URL is not attached to anything. In Roastify's API the only consumer of an artwork URL is an order line — and orders are out of scope here. You receive a URL and carry it onward yourself. That seam is accepted deliberately; it is not an oversight, and this operator will not simulate a design flow the API cannot complete.
The catalog has no palate data. Origin, region, altitude, processing method, and varietal
exist only in the Merchant App UI. The machine-readable signals are roastLevel, isDecaf,
size, and price; everything else about a coffee's character is prose in its description. Bean
selection is correspondingly weaker than it looks, and this operator does not dress up an
LLM's reading of a description as structured provenance data.
Artwork is a durable job
Roastify generates artwork asynchronously with no published SLA, so
roastify_generate_artwork returns a claim check immediately rather than holding the
request open. The work runs detached — on Modal when the operator has
couriered long-runner credentials, in-process otherwise — and survives a serverless recycle.
claim = roastify_generate_artwork(product_id=..., fields=[...], client_req_id="my-req-1")
roastify_fetch_artwork(claim=claim) # poll; every state answers with guidanceOne fare per firing, charged when the work is requested. A job that fails refunds it — the
operator keeps nothing for work that produced no artwork. Pass client_req_id and a repeated
request is safe: it becomes Roastify's Idempotency-Key, so the artwork is not generated
twice.
Development
pip install -e ".[dev]"
ruff check .
pytest -v
python -m roastify_mcp.server # needs TOLLBOOTH_NOSTR_OPERATOR_NSEC to fully runUpstream status
Roastify's API is version 0.3.1 and its own spec marks it beta, "subject to change." Expect to follow breaking upstream edits, and weigh that before promising this operator's catalog to third-party merchants.
License
Apache 2.0 — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server to provide AI agents money functionalities via Nostr and Cashu.67417MIT
- AlicenseAqualityCmaintenanceMCP server for the RustChain blockchain and BoTTube video platform, enabling AI-agent-based token earning through model context protocol and proof-of-antiquity.252MIT
- Alicense-qualityFmaintenanceMCP server that gives AI agents Lightning payments, L402 API access, trust verification, and service discovery.12MIT

satsrail-mcpofficial
Alicense-qualityCmaintenanceAn MCP server that enables AI agents to accept Bitcoin Lightning payments. It allows agents to create orders, generate invoices, check payment status, and manage the full SatsRail merchant API through natural language.MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Cloud-hosted MCP server for durable AI memory
MCP server for Flux AI image generation
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lonniev/roastify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server