ads-mcp vs memory
并排对比,帮你在这两个 MCP server 之间做选择。
ads-mcp by amekala | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 电商开发者工具效率工具 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | Jupyter Notebook | TypeScript |
| 最近提交 | 本月 | 本月 |
ads-mcp · 概述
支持谷歌广告、Meta广告、领英广告和TikTok广告的MCP服务器,提供175+广告管理工具。
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
ads-mcp · 使用场景
- 从单一界面创建和管理多个平台的广告活动
- 分析广告活动性能并获得优化建议
- 使用实际CPC数据和竞争分析研究关键词
- 自动化计划简报、性能监控和跨平台报告
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
ads-mcp · 安装
安装
Claude Desktop
- 打开设置 > 连接器 > 添加自定义连接器
- 名称:**Ads MCP**
- URL:
https://mcp.adspirer.com/mcp - 完成OAuth 2.1登录
Claude Code
- 运行
/plugin marketplace add amekala/ads-mcp - 运行
/plugin install adspirer - 运行
/mcp— 找到 **plugin:adspirer:adspirer** 并点击进行身份验证
Cursor
添加到 ~/.cursor/mcp.json:
{
"mcpServers": {
"adspirer": {
"url": "https://mcp.adspirer.com/mcp"
}
}
}Gemini CLI
gemini extensions install github.com/amekala/ads-mcpmemory · 安装
安装
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"]
}
}
}