
Free USDC Transfer
โ 21from magnetai
Enables free USDC transfers on the Base network using a Coinbase CDP MPC Wallet.
โ labsco summary โ our analysis, not the vendor's
What it is โ An MCP server that lets an AI assistant send USDC on the Base network with no transfer fees, using a Coinbase CDP MPC wallet.
What you get โ
tranfer-usdcโ schedule a feeless USDC transfer to an address or ENS/BaseName domain, with a BaseScan link to view itcreate_coinbase_mpc_walletโ create/manage a Coinbase MPC wallet, seed saved locally tompc_info.json- Automatic ENS and BaseName resolution, e.g. "send 5 USDC to example.eth"
Requirements โ A Coinbase CDP account with API credentials: COINBASE_CDP_API_KEY_NAME and COINBASE_CDP_PRIVATE_KEY.
Cost snapshot โ The server is free and open source (MIT), on npm as @magnetai/free-usdc-transfer. Transfers are advertised as feeless on Base, but it requires a Coinbase CDP account and moves real funds via that paid platform.
Setup effort โ npx -y @magnetai/free-usdc-transfer with your CDP key/private key in env, or install via magnet-desktop.
Our take โ Interesting for programmatic on-chain payments, but letting an LLM initiate real money transfers is high-risk: the wallet seed is stored in a local file and transfers are only scheduled (not confirmed) at call time, so treat approvals and key security very carefully.
Source: the project README โ summarized 2026-07-08.
โ readme from github โ mirrored (latest on GitHub โ)
Free USDC Transfer MCP Server
An MCP server implementation enabling free USDC transfers on Base with Coinbase CDP MPC Wallet integration.
Features
- Free USDC Transfers: Send USDC to any address or ENS/BaseName domain on Base - no fees, just simple transfers
- Coinbase MPC Wallet: Create and manage your Coinbase MPC wallet for secure, feeless transactions
- Name Resolution: Automatic support for ENS and BaseName domains
Functions
tranfer-usdc
- Description: Analyze the value of the purchased items and transfer USDC to the recipient via the Base chain. Due to the uncertainty of blockchain transaction times, the transaction is only scheduled here and will not wait for the transaction to be completed.
- Inputs:
- usdc_amount (number): USDC amount, greater than 0.
- recipient (string): Recipient's on-chain address or ENS domain (e.g., example.eth).
- Behavior:
- Verifies the recipient's address or resolves ENS domains.
- Schedules a USDC transfer on the Base chain.
- Provides a link to view transaction details on BaseScan.
create_coinbase_mpc_wallet
- Description: Create a Coinbase MPC wallet address.
- Behavior:
- Creates a new Coinbase MPC wallet and saves the seed to a secure file.
- If a wallet already exists, returns the existing wallet address.
- The seed file for Coinbase MPC wallets is stored in the Documents directory under the file name mpc_info.json.
{
"mcpServers": {
"free-usdc-transfer": {
"command": "npx",
"args": [
"-y",
"@magnetai/free-usdc-transfer"
],
"env": {
"COINBASE_CDP_API_KEY_NAME": "YOUR_COINBASE_CDP_API_KEY_NAME",
"COINBASE_CDP_PRIVATE_KEY": "YOUR_COINBASE_CDP_PRIVATE_KEY"
}
}
}
}Before it works, you'll need: COINBASE_CDP_API_KEY_NAMECOINBASE_CDP_PRIVATE_KEY
Configuration
Getting an API Key
- Sign up for a Coinbase CDP account
- Generate your API key from the developer dashboard
Usage with Claude Desktop
- Add this to your
claude_desktop_config.json:
{
"mcpServers": {
"free-usdc-transfer": {
"command": "npx",
"args": [
"-y",
"@magnetai/free-usdc-transfer"
],
"env": {
"COINBASE_CDP_API_KEY_NAME": "YOUR_COINBASE_CDP_API_KEY_NAME",
"COINBASE_CDP_PRIVATE_KEY": "YOUR_COINBASE_CDP_PRIVATE_KEY"
}
}
}
}- Or install the server with magnet-desktop
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.
Licensed under MITโ you can use, modify, and redistribute it under that license's terms.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Crafted by Magnet Labs with our vibrant AI & Crypto community