Dodo Agent Plugin MCP Server

Dodo Payments skills and MCP server hints for OpenCode.

Remote serverstreamable-httpGo

What is the Dodo Agent Plugin MCP server?

Connect Dodo Agent Plugin to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Dodo Payments skills and MCP server hints for OpenCode. The dodo agent plugin mcp server is what makes that connection.

What the server does

The official Dodo Payments plugin for AI coding agents. Installs seventeen integration skills and two MCP servers across Claude Code, Codex CLI, Cursor, and OpenCode from a single source of truth.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • dodo_api_key — your dodo_test_... or dodo_live_... key
  • dodo_webhook_key — your webhook signing secret
  • dodo_environment — test_mode or live_mode
  • Skill — Description
  • best-practices — SDK setup, environments, API keys, and the canonical checkout-to-webhook architecture
  • framework-adapters — Official @dodopayments/* handlers for Next.js, Express, Hono, Astro, Remix, SvelteKit, Nuxt, Fastify, TanStack, Bun, Convex
  • testing-and-go-live — Test mode, test payment methods, webhook testing, production launch checklist
  • checkout-integration — Checkout Sessions, payment links, and overlay checkout
  • subscription-integration — Subscription lifecycle, trials, plan changes, proration, on-demand charges
  • mobile-checkout — In-app checkout for React Native, Flutter, iOS, and Android
  • webhook-integration — Receiving and verifying webhooks via the Standard Webhooks spec
  • credit-based-billing — Credit entitlements, balances, ledger, rollover, overage, meter-based deduction

Credentials and setup notes

Configuration is passed through the environment: DODO_PAYMENTS_API_KEY, DODO_PAYMENTS_WEBHOOK_KEY, DODO_PAYMENTS_ENVIRONMENT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Dodo Agent Plugin's toolset — dodo_api_key, dodo_webhook_key, dodo_environment and 11 more — is a fair guide to whether it matches your workflow. It is maintained by dodopayments; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Dodo Agent Plugin.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
dodo_api_keyyour dodo_test_... or dodo_live_... key
dodo_webhook_keyyour webhook signing secret
dodo_environmenttest_mode or live_mode
SkillDescription
best-practicesSDK setup, environments, API keys, and the canonical checkout-to-webhook architecture
framework-adaptersOfficial @dodopayments/* handlers for Next.js, Express, Hono, Astro, Remix, SvelteKit, Nuxt, Fastify, TanStack, Bun, Convex
testing-and-go-liveTest mode, test payment methods, webhook testing, production launch checklist
checkout-integrationCheckout Sessions, payment links, and overlay checkout
subscription-integrationSubscription lifecycle, trials, plan changes, proration, on-demand charges
mobile-checkoutIn-app checkout for React Native, Flutter, iOS, and Android
webhook-integrationReceiving and verifying webhooks via the Standard Webhooks spec
credit-based-billingCredit entitlements, balances, ledger, rollover, overage, meter-based deduction
usage-based-billingMeters, event ingestion, aggregation, and per-unit pricing
license-keysLicense key activation, validation, and instance management

How to install the Dodo Agent Plugin MCP server

{
    "mcpServers": {
        "dodopayments-api": {
            "type": "stdio",
            "command": "npx",
            "args": ["-y", "dodopayments-mcp@latest"],
            "env": {
                "DODO_PAYMENTS_API_KEY": "${user_config.dodo_api_key}",
                "DODO_PAYMENTS_WEBHOOK_KEY": "${user_config.dodo_webhook_key}",
                "DODO_PAYMENTS_ENVIRONMENT": "${user_config.dodo_environment}"
            }
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DODO_PAYMENTS_API_KEYCredential the server authenticates with.Yes
DODO_PAYMENTS_WEBHOOK_KEYCredential the server authenticates with.Yes
DODO_PAYMENTS_ENVIRONMENTConfiguration value read at startup.Optional

Example prompts to try

  • Use Dodo Agent Plugin to dodo api key.
  • Use Dodo Agent Plugin to dodo webhook key.
  • Use Dodo Agent Plugin to dodo environment.

Frequently asked questions

It connects Dodo Agent Plugin to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (dodo_api_key, dodo_webhook_key, dodo_environment, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Dodo Agent Plugin directly.