openfinclaw-cli vs everything
Side-by-side comparison to help you pick between these two MCP servers.
openfinclaw-cli by mirror29 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
openfinclaw-cli · Summary
OpenFinClaw is an MCP server that provides AI-powered quant trading research, strategy generation, and backtesting capabilities across multiple AI platforms.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openfinclaw-cli · Use cases
- Generate and backtest trading strategies through natural language prompts
- Access financial research and analysis across multiple markets
- Share and discover quant strategies through a community leaderboard
- Integrate quant trading capabilities into AI coding environments
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
openfinclaw-cli · Install
# Install with automatic configuration
npx @openfinclaw/cli@latest install
# Non-interactive install
npx @openfinclaw/cli@latest install --yes --platforms cursor,claude-code --tool-groups deepagent,strategy --api-key fch_xxx
# Configure Claude Desktop
# Add to ~/.claude/settings.json:
{
"mcpServers": {
"openfinclaw": {
"command": "npx",
"args": ["@openfinclaw/cli", "serve", "--tools=deepagent,strategy"],
"env": {
"OPENFINCLAW_API_KEY": "fch_xxx"
}
}
}
}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