MCP Catalogs
Home

everything vs fred-mcp-server

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

everything
by modelcontextprotocol
fred-mcp-server
by stefanoamorelli
Stars★ 85,748★ 92
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

fred-mcp-server · Summary

FRED MCP Server provides universal access to Federal Reserve Economic Data through three powerful tools.

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

fred-mcp-server · Use cases

  • Financial analysis and market research
  • Economic data retrieval for academic studies
  • Integration of economic indicators into AI applications

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

fred-mcp-server · Install

Installation

Via Smithery

npx -y @smithery/cli install @stefanoamorelli/fred-mcp-server --client claude

Manual Installation

  1. Clone the repository:
git clone https://github.com/stefanoamorelli/fred-mcp-server.git
cd fred-mcp-server
  1. Install dependencies:
pnpm install
  1. Build the project:
pnpm build

Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "FRED MCP Server": {
      "command": "/usr/bin/node",
      "args": [
        "<PATH_TO_YOUR_CLONED_REPO>/fred-mcp-server/build/index.js"
      ],
      "env": {
        "FRED_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.