interactive-brokers-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
interactive-brokers-mcp by code-rabi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 131 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | FinanceDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
interactive-brokers-mcp · Summary
A comprehensive MCP server for Interactive Brokers trading with market data, position tracking, and order placement capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
interactive-brokers-mcp · Use cases
- Automated trading systems with AI decision making
- Portfolio monitoring through AI assistants
- Retrieving account statements and trading history via natural language
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
interactive-brokers-mcp · Install
Add this MCP server to your Cursor/Claude configuration:
{
"mcpServers": {
"interactive-brokers": {
"command": "npx",
"args": ["-y", "interactive-brokers-mcp"]
}
}
}For headless mode, configure with environment variables:
{
"mcpServers": {
"interactive-brokers": {
"command": "npx",
"args": ["-y", "interactive-brokers-mcp"],
"env": {
"IB_HEADLESS_MODE": "true",
"IB_USERNAME": "your_ib_username",
"IB_PASSWORD_AUTH": "your_ib_password"
}
}
}
}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