memory vs trading-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | trading-mcp by netanelavr | |
|---|---|---|
| Stars | ★ 85,748 | ★ 71 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 金融数据AI / LLM 工具网页抓取 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 10 个月前 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
trading-mcp · 概述
Trading MCP 服务器提供股票筛选、基本面分析、内部交易、社交情绪和新闻分析功能。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
trading-mcp · 使用场景
- 金融分析师同时使用多个数据点评估股票
- 个人投资者研究社交情绪和内部交易模式
- 算法交易员基于技术模式和指标筛选股票
memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .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 · 安装
安装步骤
- **克隆并安装依赖:**
git clone <repository-url>
cd trading-mcp
npm install- **构建项目:**
npm run build- **在 Claude Desktop 中配置:**
添加到 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"
}
}
}
}