everything vs trading_skills
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | trading_skills by staskh | |
|---|---|---|
| Stars | ★ 85,748 | ★ 208 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
trading_skills · Summary
MCP server providing 32+ trading analysis tools for options traders and market analysis.
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
trading_skills · Use cases
- Scan multiple stocks for bullish trends and PMCC opportunities
- Analyze option spreads and risk metrics for trading positions
- Manage portfolio and find roll candidates using Interactive Brokers
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-everythingtrading_skills · Install
Install the package:
pip install trading-skillsAdd to Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"trading-skills": {
"command": "<path/to/trading-skills-mcp>",
"env": {
"MASSIVE_API_KEY": "your_api_key"
}
}
}
}