joplin-mcp-server vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
joplin-mcp-server by dweigend | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 73 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 40 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具知识库 / RAGAI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 15 个月前 | 本月 |
joplin-mcp-server · 概述
Joplin 笔记 MCP 服务器,提供增删改查和搜索功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
joplin-mcp-server · 使用场景
- AI 助手通过 MCP 协议访问和修改 Joplin 笔记
- 基于内容分析的自动笔记整理
- 通过 AI 工具实现跨平台笔记管理
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
joplin-mcp-server · 安装
安装
前置要求
- Python 3.10 或更高版本
- 启用了 Web Clipper 服务的 Joplin Desktop
- uv (Python 包管理器)
设置
# 克隆仓库
git clone https://github.com/dweigend/joplin-mcp.git
cd joplin-mcp
# 创建并激活虚拟环境
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
# 安装依赖
uv pip install -e .
# 配置 Joplin API 令牌
# 创建包含 JOPLIN_TOKEN=your_api_token_here 的 .env 文件Claude Desktop 配置
添加到 Claude Desktop 配置文件中:
{
"mcpServers": {
"joplin": {
"command": "/PATH/TO/UV/uv",
"args": [
"--directory",
"/PATH/TO/YOUR/PROJECT/joplin_mcp",
"run",
"src/mcp/joplin_mcp.py"
]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything