Coinbase just made agentic payments infrastructure significantly more accessible. The CDP changelog documents three interconnected releases that, taken together, represent a meaningful shift in how engineering teams can build autonomous onchain payment flows: the `@coinbase/cdp-cli` package with a bundled MCP server, delegated signing for time-bound backend authorization, and onchain swap hooks for composable transaction logic. If you're building payment infrastructure that needs to operate without constant human intervention, these releases deserve your full attention right now.
What Actually Shipped
CDP CLI and the Bundled MCP Server
The `@coinbase/cdp-cli` package delivers two things in one install: authenticated terminal access to the CDP API and a production-ready MCP (Model Context Protocol) server. This is not a prototype. The MCP server ships with typed tools, agent skills, and inline schemas for every endpoint. What does that mean practically? Your AI agent, whether it's running on Claude, GPT-4o, or any MCP-compatible runtime, can now call CDP endpoints with full schema awareness. The agent knows what parameters each tool expects, what the response shape looks like, and how to chain calls. No custom wrapper code. No prompt engineering around undocumented API surfaces. The schemas are inline and authoritative. The CLI side gives your backend engineers direct terminal access to the same authenticated API surface. You can script, test, and debug CDP workflows without leaving the terminal. For teams that live in the command line, this collapses the feedback loop significantly.
Delegated Signing: The Architecture That Makes Async Payments Real
Delegated signing is the most architecturally significant of the three releases. Here is the core problem it solves: your end user initiated a payment flow, but they are now offline. A webhook fires. An async job completes. An agentic process needs to finalize a transaction. Without delegated signing, you hit a wall. The user's key isn't available, so the transaction cannot proceed. Delegated signing solves this with time-bound delegations. Your backend receives a scoped, time-limited authorization to sign on behalf of the end user for a defined window. When the webhook fires or the async process completes, your backend signs and submits. The user doesn't need to be present. The design choices here matter:
- •Time-bound by default. Delegations expire. This limits blast radius if a delegation is compromised or a workflow goes sideways.
- •Scoped to purpose. The delegation isn't a blanket signing authority. It's tied to the specific workflow context.
- •Built for webhooks and agentic spend. The explicit callout to "agentic spend" in the documentation signals that Coinbase is designing for AI agent use cases, not retrofitting them.
For payment infrastructure teams, this closes a real gap. Subscription billing, delayed settlements, cross-timezone B2B payments, and AI agent-initiated transactions all have async completion requirements. Previously, handling these on-chain required either keeping user keys hot (a security anti-pattern) or forcing synchronous user presence (a product constraint that kills conversion). Delegated signing offers a third path.
Onchain Swap Hooks
Onchain swap hooks complete the picture by making swap logic composable. Hooks let you attach custom logic to swap execution points, giving your application control over what happens before and after a swap settles on-chain. The practical applications include:
- •Fee routing at swap completion
- •Compliance checks before execution
- •Cross-chain bridging triggers post-swap
- •Subscription debit logic tied to swap events
Combined with delegated signing, swap hooks enable fully automated treasury management and payment routing flows without requiring user intervention at each step.
Why This Matters for Payment Infrastructure in 2026
The payments industry has spent the last two years talking about AI agents as payment initiators. Most of that conversation has been theoretical. The infrastructure to actually support it, meaning authenticated, scoped, async, auditable onchain transactions initiated by software rather than humans, has been incomplete. These three releases close the most critical gap. The MCP server gives agents a structured, schema-aware interface to CDP. Delegated signing gives agents the authorization to act asynchronously. Swap hooks give agents composable control over what happens at settlement. The combination is not a toy. It's the scaffolding for production agentic payment flows.
Competitive Context: How CDP Stacks Up
To be direct about where Coinbase CDP stands relative to the alternatives:
| Capability | Coinbase CDP | Generic RPC + Wallet SDK |
|---|---|---|
| MCP server, native | ✅ | ❌ |
| Delegated signing | ✅ | ❌ |
| Onchain swap hooks | ✅ | ❌ |
| Inline endpoint schemas | ✅ | ❌ |
| Stablecoin-native rails | ✅ | ❌ |
| Compliance controls, built-in | ✅ | ❌ |
Circle's CCTP is excellent for cross-chain USDC movement, but it is not an orchestration layer. Stripe's crypto offering has strong developer experience but limited onchain composability. Generic RPC plus wallet SDK approaches give you flexibility at the cost of building everything yourself. CDP's differentiation is the combination of orchestration, agent-native tooling, and async signing in one integrated package. No one else has shipped this exact combination yet. That said, CDP is not a fit for every stack. If your payment flows are synchronous, user-present, and don't require onchain composability, Stripe or Adyen will serve you better and with less integration complexity. Know your architecture before choosing your infrastructure.
What Teams Should Do Right Now
Here is a concrete action plan depending on where your team sits:
If You Are Building Agentic Payment Flows
Adopt now. The MCP server plus delegated signing is exactly the stack you need. Start with:
Install `@coinbase/cdp-cli` and authenticate your environment
Stand up the MCP server locally and map the available tools against your agent's task graph
Identify every async completion point in your payment workflow where delegated signing removes a user-presence dependency
Model your swap logic as hooks rather than custom post-transaction scripts
The integration lift is real but bounded. The schemas are typed and inline, which means your agent integration is less likely to drift from the actual API surface over time.
If You Are Running Traditional Card-Plus-Banking Infrastructure
Don't rip and replace. But do run a pilot on your async settlement flows. Specifically:
- •Map every webhook handler that currently requires a synchronous user action to complete
- •Evaluate whether delegated signing could eliminate that dependency
- •Assess your cross-border payment corridors for swap hook applicability
The value of these releases compounds most for teams that have already hit the ceiling of what synchronous, user-present payment flows can achieve.
If You Are a Fintech Building on Top of Multiple Rails
CDP's MCP server is particularly valuable here. The agent-skills layer means you can expose CDP capabilities to your internal AI tooling without writing custom connectors for each endpoint. If you are already running an MCP-compatible agent runtime, the incremental integration cost is low.
The Orchestration Layer Question
Here is the strategic framing that matters most. Every serious payment infrastructure team in 2026 is asking the same question: what is my orchestration layer? For years, the answer was "we built it internally" or "we use Stripe Connect" or "we rely on our acquirer's routing logic." None of those answers scale well into agentic, multi-rail, async payment environments. The complexity of routing across cards, banking, stablecoins, and crypto rails, while managing compliance, fraud, and settlement, requires a purpose-built orchestration layer. Soap's position is exactly here. Soap exists precisely because no single PSP, no single chain, and no single compliance stack can handle the full surface area of modern global payments. The CDP releases reinforce this thesis rather than threaten it. CDP gives you excellent onchain tooling. You still need an orchestration layer that connects CDP to your card rails, your banking integrations, your ML-powered auth optimization, and your compliance controls. The teams that will win are the ones that treat CDP as a powerful module within a broader orchestration architecture, not as a replacement for orchestration itself. CDP handles the onchain layer well. Soap handles the layer that decides when to use CDP, when to use traditional rails, and how to optimize across both in real time.
The Bigger Picture
Coinbase shipping an MCP server with delegated signing is a signal, not just a product release. It signals that the major crypto infrastructure providers are now designing explicitly for AI agents as first-class payment actors. That shift has implications for every team building payment infrastructure today. The teams that figure out how to make their systems agent-accessible, meaning structured, schema-aware, async-capable, and composable, will have a significant advantage in the next 18 months. The teams that treat AI agents as a future consideration rather than a present architecture requirement will be rebuilding their stacks under competitive pressure. Start with the CDP CLI. Map your async payment flows. Think hard about your orchestration layer. The infrastructure to build serious agentic payments now exists. The question is whether your team will use it.
Get started with Soap
If you want to start accepting agent payments, Soap gets you live in one call:
1curl -X POST 'https://api-sandbox.paywithsoap.com/api/v1/checkouts' \
2--header 'Content-Type: application/json' \
3--header 'Authorization: YOUR_API_KEY' \
4--data '{
5 "customer_id": "cus_vi57KegYgcRqcGHqip8q6UZiqtrwMT870",
6 "type": "withdrawal",
7 "balance_amount_cents": 10000,
8 "experience": "web",
9 "return_url": "https://myapp.com/wallet"
10}'Ready to scale with AI-driven payments?
Join innovators using Soap’s unified platform to boost auth rates, fight fraud, and manage global compliance with ease.
Read More Blog Posts
Coinbase CDP CLI Ships Agent-Ready Onchain Infrastructure
Coinbase just redrew the boundary between crypto custody infrastructure and AI execution layer. The CDP CLI and bundled MCP server, alongside delegated signing
Coinbase's Agentic Wallet Changes Agent Commerce
Coinbase shipped three features this week that, taken together, represent its most coherent push yet into autonomous agent infrastructure. The Agentic Wallet, S

