MCP Catalogs
Home

filesystem vs universal-crypto-mcp

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

filesystem
by modelcontextprotocol
universal-crypto-mcp
by nirholas
Stars★ 85,748★ 37
30d uses
Score7744
Official
Categories
File SystemDeveloper ToolsProductivity
FinanceDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

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

universal-crypto-mcp · Summary

A universal MCP server for AI agents to interact with 20+ blockchain networks via natural language.

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

universal-crypto-mcp · Use cases

  • AI agents can perform cross-chain token swaps through multiple DEX aggregators
  • Users can track portfolio performance across 20+ blockchain networks through natural language queries
  • Developers can build AI-powered DeFi applications with automated gas optimization and MEV protection

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.

universal-crypto-mcp · Install

Install the package via npm:

npm install @nirholas/universal-crypto-mcp

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "universal-crypto": {
      "command": "npx",
      "args": ["@nirholas/universal-crypto-mcp"]
    }
  }
}

The server can also run via stdio or HTTP transport modes.

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