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 | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-everythingfred-mcp-server · Install
Installation
Via Smithery
npx -y @smithery/cli install @stefanoamorelli/fred-mcp-server --client claudeManual Installation
- Clone the repository:
git clone https://github.com/stefanoamorelli/fred-mcp-server.git
cd fred-mcp-server- Install dependencies:
pnpm install- Build the project:
pnpm buildConfiguration
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>"
}
}
}
}