memory vs trading-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | trading-mcp by netanelavr | |
|---|---|---|
| Stars | ★ 85,748 | ★ 71 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | FinanceAI / LLM ToolsWeb Scraping |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
trading-mcp · Summary
Trading MCP server providing stock screening, fundamental analysis, insider trading, social sentiment, and news analysis.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
trading-mcp · Use cases
- Financial analysts evaluating stocks using multiple data points simultaneously
- Individual investors researching social sentiment and insider trading patterns
- Algorithmic traders screening stocks based on technical patterns and metrics
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}trading-mcp · Install
Installation
- **Clone and install dependencies:**
git clone <repository-url>
cd trading-mcp
npm install- **Build the project:**
npm run build- **Configure in Claude Desktop:**
Add to claude_desktop_config.json:
{
"mcpServers": {
"trading-mcp": {
"command": "node",
"args": ["/path/to/trading-mcp/dist/server.js"],
"env": {
"OPENAI_API_KEY": "sk-your-openai-api-key-here",
"REDDIT_CLIENT_ID": "your-reddit-client-id",
"REDDIT_CLIENT_SECRET": "your-reddit-client-secret",
"REDDIT_USERNAME": "your-reddit-username",
"REDDIT_PASSWORD": "your-reddit-password"
}
}
}
}