MCP Catalogs
Home

everything vs foundry-mcp-server

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

everything
by modelcontextprotocol
foundry-mcp-server
by PraneshASP
Stars★ 85,748★ 247
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month4 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

foundry-mcp-server · Summary

An MCP server for Solidity developers providing comprehensive Foundry toolchain integration.

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

foundry-mcp-server · Use cases

  • Automating smart contract analysis and debugging in LLM assistants
  • Enabling blockchain development through natural language commands
  • Facilitating onchain operations without switching between tools

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

foundry-mcp-server · Install

Installation

Prerequisites

  • Node.js v18+
  • Foundry toolchain (Forge, Cast, Anvil)
  • Heimdall-rs (for smart contract analysis)

Using NPM Package

npm install -g @pranesh.asp/foundry-mcp-server

Claude Desktop Configuration

{
  "mcpServers": {
    "foundry": {
      "command": "npx",
      "args": ["@pranesh.asp/foundry-mcp-server"],
      "env": {
        "RPC_URL": "http://localhost:8545",
        "PRIVATE_KEY": "0x..."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.