memory vs woocommerce-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | woocommerce-mcp-server by techspawn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 89 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 电商开发者工具效率工具 |
| 实现语言 | TypeScript | JavaScript |
| 最近提交 | 本月 | 6 个月前 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
woocommerce-mcp-server · 概述
功能全面的 WooCommerce MCP 服务器,通过 WordPress REST API 集成,支持产品、订单、客户和商店管理。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
woocommerce-mcp-server · 使用场景
- 通过 AI 助手自动化 WooCommerce 商店管理
- 在连接到 WooCommerce 的 AI 应用程序中创建购物体验
- 在 WooCommerce 和其他系统之间同步产品信息和订单
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"]
}
}
}woocommerce-mcp-server · 安装
安装
- 克隆仓库
- 安装依赖项:
npm install- 构建项目:
npm run build配置
将服务器添加到您的 MCP 设置文件,包含环境变量:
{
"mcpServers": {
"woocommerce": {
"command": "node",
"args": ["path/to/build/index.js"],
"env": {
"WORDPRESS_SITE_URL": "https://your-wordpress-site.com",
"WOOCOMMERCE_CONSUMER_KEY": "your-woocommerce-consumer-key",
"WOOCOMMERCE_CONSUMER_SECRET": "your-woocommerce-consumer-secret",
"WORDPRESS_USERNAME": "your-wordpress-username",
"WORDPRESS_PASSWORD": "your-wordpress-password"
}
}
}
}