sdp-mcp
sdp-mcp
76-tool MCP server for the Solana Developer Platform -- stablecoin issuance, payments, trading, wallets, and compliance.
The only MCP bridge to SDP. Built for enterprise Solana development. Covers the full SDP API surface: issue stablecoins and RWAs, move money on/off-chain, trade via DEX aggregation, manage wallets and custody, and screen addresses for compliance -- all from any MCP-compatible AI agent.
SDP is the enterprise gateway to Solana used by Mastercard, Western Union, Worldpay, and other global payment networks.
Tool Count by Family
Family | Tools | Coverage |
Issuance | 28 | Stablecoins, tokenized deposits, RWAs, templates, deploy, mint, burn, freeze, pause, seize, allowlist, authorities |
Wallets | 14 | Create, delete, initialize, custody switching, signing configs, balances, public keys, signer verification |
Projects | 10 | CRUD, member management, project-scoped API keys |
Payments | 9 | Fiat on/off-ramp, stablecoin transfer, fee estimation, wallet balances, payment policies |
API Keys | 6 | CRUD, rotation with grace period |
Trading | 6 | DEX swap quotes, swap execution (Jito bundles), automated vaults (DCA/TWAP/limit/rebalance), FX rates |
Health | 2 | Service health, dependency readiness |
Compliance | 1 | Address screening (Chainalysis, Elliptic, TRM Labs) |
Total | 76 |
Quick Start
npx (zero install)
SDP_API_KEY=your-key npx sdp-mcpClaude Desktop / Claude Code
Add to claude_desktop_config.json (or .mcp.json):
{
"mcpServers": {
"sdp": {
"command": "npx",
"args": ["-y", "sdp-mcp"],
"env": {
"SDP_API_KEY": "your-key-here",
"SDP_NETWORK": "devnet"
}
}
}
}Global install
npm install -g sdp-mcp
SDP_API_KEY=your-key sdp-mcpEnvironment Variables
Variable | Required | Default | Description |
| Yes | -- | SDP API key for authentication |
| No |
| Base URL for the SDP API |
| No |
| Solana network ( |
Full Tool Reference
Health (2)
Tool | Description |
| Check SDP service health, API version, and uptime. No auth required. |
| Check readiness of all SDP dependencies (database, RPC, custody). |
API Keys (6)
Tool | Description |
| List all account-level API keys with permissions and status. |
| Create a new API key with permission scoping and IP allowlist. |
| Get details of a specific API key by ID. |
| Update key name, permissions, or IP allowlist. |
| Permanently revoke an API key. |
| Rotate a key with configurable grace period (default 24h). |
Wallets (14)
Tool | Description |
| Initialize wallet signing with a custody provider (Privy, Fireblocks, BitGo, etc.). |
| Create a new Solana wallet with optional label and project association. |
| Get wallet details including public key, balances, and custody provider. |
| List all wallets with IDs, labels, public keys, and balances. |
| Update a wallet's label. |
| Permanently delete a wallet (ensure zero balance first). |
| Set the default wallet for signing operations. |
| Get the base58-encoded public key for a wallet. |
| Get the active custody provider and signing policy. |
| List all initialized custody providers and their configurations. |
| Sum token holdings across all wallets, optionally by mint. |
| List available custody providers for migration. |
| Migrate signing from one custody provider to another. |
| Verify custody signing works by sending a memo transaction. |
Projects (10)
Tool | Description |
| List all projects with names, IDs, and creation dates. |
| Create a new project as an organizational container. |
| Get project details by ID. |
| Update project name or description. |
| Permanently delete a project and disassociate resources. |
| List project members with roles and join dates. |
| Add a member by email with role assignment. |
| Remove a member and revoke their project access. |
| List API keys scoped to a specific project. |
| Create a project-scoped API key. |
Issuance (28)
Tool | Description |
| Issue a Token-2022 stablecoin with configurable authorities and supply cap. |
| Issue a tokenized bank deposit (demand, time, savings). |
| Issue a real-world asset token with transfer restrictions and valuation oracle. |
| Get token metadata and on-chain state. |
| List issued tokens, filterable by type. |
| Mint new supply to a recipient wallet. |
| List available token templates (stablecoin, security, custom). |
| Get full template configuration and default parameters. |
| Update token name, symbol, or metadata. |
| Deploy a token on-chain (execute mode, SDP signs). |
| Prepare unsigned deployment transaction for external signing. |
| Prepare unsigned mint transaction for external signing. |
| Burn tokens to reduce supply (execute mode). |
| Prepare unsigned burn transaction for external signing. |
| Force-burn from any account using permanent delegate authority. |
| Prepare unsigned force-burn transaction. |
| Force-transfer (seize) tokens for regulatory compliance. |
| Prepare unsigned seizure transaction. |
| Change token authority (mint, freeze, close, delegate). |
| Prepare unsigned authority update transaction. |
| Globally pause all transfers for a token. |
| Resume transfers for a paused token. |
| Freeze a specific token account. |
| Unfreeze a previously frozen account. |
| List all frozen accounts for a token. |
| List or add entries to a token's transfer allowlist. |
| Remove an address from the transfer allowlist. |
| List transactions for a specific token with filtering. |
Payments (9)
Tool | Description |
| Fiat-to-stablecoin onramp (Stripe, Circle, MoonPay). |
| Stablecoin-to-fiat offramp (ACH, SEPA, PIX). |
| Transfer stablecoins between wallets with auto ATA creation. |
| Check payment status by ID. |
| List payment history with filtering and pagination. |
| Estimate fees before executing a payment. |
| Get SOL, USDC, and all SPL token balances for a wallet. |
| Get payment policies (allowlist, limits) for a wallet. |
| Update destination allowlist and transfer limits. |
Trading (6)
Tool | Description |
| Get best-price swap quotes via DEX aggregation (Jupiter, Raydium, Orca). |
| Execute a swap with optional Jito bundle for MEV protection. |
| Create an automated trading vault (DCA, TWAP, limit, rebalance). |
| Get vault state, performance metrics, and PnL. |
| List vaults with strategy, status, and owner filtering. |
| Get exchange rates: crypto-crypto, crypto-fiat, fiat-fiat. |
Compliance (1)
Tool | Description |
| Screen address against Chainalysis, Elliptic, Range, and TRM Labs. |
Architecture
@psm/mcp-core-ts -- shared MCP infrastructure (McpAction, output filtering, rate limiting, input validation)
@modelcontextprotocol/sdk -- MCP protocol transport (stdio)
zod + zod-to-json-schema -- input validation with auto-generated JSON schemas
fetch -- HTTP client for SDP API calls (no external HTTP deps)
Security
API key redacted from error messages and responses
Output filter strips secrets (API keys, tokens, JWTs) and PII from all responses
Rate limited to 60 calls/minute
Input parameter length limits enforced (8KB max per field)
Control characters stripped from all string inputs
Tool name injection validation
License
MIT