MCP Catalogs
Home

goldrush-mcp-server vs filesystem

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

goldrush-mcp-server
by covalenthq
filesystem
by modelcontextprotocol
Stars★ 14★ 85,748
30d uses
Score4277
Official
Categories
FinanceblockchainDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

goldrush-mcp-server · Summary

MCP server exposing Covalent's GoldRush blockchain APIs as tools and resources for LLM clients.

filesystem · Summary

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

goldrush-mcp-server · Use cases

  • Enable LLMs to access blockchain data and analytics through natural language
  • Provide blockchain information retrieval for AI-powered financial advisors
  • Support developers building blockchain-aware applications with MCP integration

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

goldrush-mcp-server · Install

Installation

npm install -g @covalenthq/goldrush-mcp-server

Claude Desktop Configuration

Add this to your claude_desktop_config.json:

{
    "mcpServers": {
        "goldrush": {
            "command": "npx",
            "args": ["-y", "@covalenthq/goldrush-mcp-server@latest"],
            "env": {
                "GOLDRUSH_API_KEY": "YOUR_API_KEY_HERE"
            }
        }
    }
}

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.