everything vs mcp-metatrader5-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-metatrader5-server by Qoyyuum | |
|---|---|---|
| Stars | ★ 85,748 | ★ 133 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-metatrader5-server · Summary
MCP server for MetaTrader 5 trading platform that provides AI assistants with market data and trading capabilities.
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-metatrader5-server · Use cases
- AI-powered trading assistants that can analyze market data and execute trades
- Automated trading systems that monitor markets and execute trades based on conditions
- Risk management tools that analyze positions and trading history
- Market research bots that collect and analyze historical market data
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-everythingmcp-metatrader5-server · Install
Installation
From PyPI (Recommended)
uvx --from mcp-metatrader5-server mt5mcpFrom Source
git clone https://github.com/Qoyyuum/mcp-metatrader5-server.git
cd mcp-metatrader5-server
uv sync
uv run mt5mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-metatrader5-server": {
"command": "uvx",
"args": [
"--from",
"mcp-metatrader5-server",
"mt5mcp"
]
}
}
}