everything vs sp500-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | sp500-mcp-server by zhensherlock | |
|---|---|---|
| Stars | ★ 85,748 | ★ 96 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sp500-mcp-server · Summary
A well-documented MCP server providing S&P 500 company data tools through a Next.js web interface with Supabase backend.
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
sp500-mcp-server · Use cases
- Financial analysts researching S&P 500 companies through AI assistants with direct data access
- Investment portfolio tools requiring real-time company financials and news data
- Academic researchers studying market trends using standardized S&P 500 metrics
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-everythingsp500-mcp-server · Install
- Install dependencies:
pnpm install - Create local env file with Supabase credentials (SUPABASE_URL and SUPABASE_ANON_KEY required)
- Build embedded MCP App HTML resources:
pnpm --filter @apps/web-app build - Start apps:
pnpm dev
For Claude Desktop, add to config.json:
{
"mcpServers": {
"sp500": {
"command": "npx",
"args": ["@your-org/sp500-mcp-server"],
"env": {
"SUPABASE_URL": "your_url",
"SUPABASE_ANON_KEY": "your_key"
}
}
}
}