mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by finmap-org | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 10 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-server · Summary
A financial data MCP server providing stock exchange data from multiple countries with visualization capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- Financial analysis and research
- Market monitoring and investment decisions
- Comparative analysis across different stock exchanges
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
mcp-server · Install
Option 1: Remote Server (Hosted)
Connect to the hosted MCP server without any installation:
**Server URL**: https://mcp.finmap.org
**Claude Desktop Configuration**:
{
"mcpServers": {
"finmap": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.finmap.org"]
}
}
}Option 2: Local Package (npm)
Install and run locally for better performance and offline access:
# Install globally
npm install -g finmap-mcp
# Or use directly
npx finmap-mcp**Claude Desktop Configuration**:
{
"mcpServers": {
"finmap": {
"command": "npx",
"args": ["-y", "finmap-mcp"]
}
}
}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