MCP Catalogs
Home

mcp-free-usdc-transfer vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-free-usdc-transfer
by magnetai
filesystem
by modelcontextprotocol
Stars★ 20★ 85,748
30d uses
Score3477
Official
Categories
FinanceblockchainDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageJavaScriptTypeScript
Last commit16 mo agothis month

mcp-free-usdc-transfer · Summary

MCP server for free USDC transfers on Base blockchain using Coinbase CDP wallets.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-free-usdc-transfer · Install

Installation

  1. Get your Coinbase CDP API key from [Coinbase CDP portal](https://portal.cdp.coinbase.com/)
  2. 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"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.