mcp-free-usdc-transfer vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-free-usdc-transfer by magnetai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | FinanceblockchainDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 16 mo ago | this month |
mcp-free-usdc-transfer · Summary
MCP server for free USDC transfers on Base blockchain using Coinbase CDP wallets.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-free-usdc-transfer · Use cases
- Cryptocurrency payments and transfers without network fees
- Blockchain application testing with real USDC transactions
- Automated payment systems integrated with AI assistants
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-free-usdc-transfer · Install
Installation
- Get your Coinbase CDP API key from [Coinbase CDP portal](https://portal.cdp.coinbase.com/)
- Add 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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything