tradememory-protocol vs everything
Side-by-side comparison to help you pick between these two MCP servers.
tradememory-protocol by mnemox-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 906 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
tradememory-protocol · Summary
TradeMemory Protocol is an MCP server providing decision audit trails and persistent memory for AI trading agents with outcome-weighted recall and SHA-256 tamper detection.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
tradememory-protocol · Use cases
- Pre-flight trading workflow: Memory retrieval before making trading decisions
- Automated trading systems: Sync trade decisions and outcomes from platforms like MT5
- Compliance and audit: Generate tamper-proof records for regulatory submissions
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
tradememory-protocol · Install
pip install tradememory-protocolAdd to Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"tradememory": {
"command": "uvx",
"args": ["tradememory-protocol"]
}
}
}For other clients:
# Claude Code
claude mcp add tradememory -- uvx tradememory-protocol
# From source
git clone https://github.com/mnemox-ai/tradememory-protocol.git
cd tradememory-protocol && pip install -e . && python -m tradememory
# Docker
docker compose up -deverything · 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