memory vs WEBGhosting-MCP
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | WEBGhosting-MCP by yranjan06 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 浏览器自动化网页抓取AI / LLM 工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 1 个月前 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
WEBGhosting-MCP · 概述
智能隐身浏览器 MCP 服务器,具有反指纹识别功能,可让 AI 代理安全浏览网页。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
WEBGhosting-MCP · 使用场景
- 规避检测的网络抓取
- 语音控制的 AI 浏览
- 从动态网站提取数据
- 自动化网页测试与交互
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"]
}
}
}WEBGhosting-MCP · 安装
- 从发布页面下载适合您平台的二进制文件
- 配置您的 MCP 客户端:
{
"servers": {
"webghosting": {
"type": "stdio",
"command": "/path/to/webmcp",
"env": {
"AI_API_KEY": "您的 API 密钥",
"AI_BASE_URL": "https://api.openai.com/v1",
"AI_MODEL": "gpt-4o"
}
}
}
}- 在兼容的 IDE 或代理中启动 MCP 服务器(Cursor、Claude Code 等)