evernote-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
evernote-mcp-server by brentmid | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 51 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Thrift | TypeScript |
| Last commit | 2 mo ago | this month |
evernote-mcp-server · Summary
Evernote MCP server for accessing notes via OAuth, with Docker support and recent updates.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
evernote-mcp-server · Use cases
- Querying personal knowledge base using natural language prompts
- Searching for specific information across all Evernotes
- Summarizing notes related to specific topics or projects
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
evernote-mcp-server · Install
Installation
Docker Deployment (Recommended)
git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
cp .env.example .env
# Edit .env with your Evernote API credentials
docker-compose up --buildLocal Development
git clone https://github.com/brentmid/evernote-mcp-server.git
cd evernote-mcp-server
npm install
# Set environment variables
export EVERNOTE_CONSUMER_KEY="your-consumer-key"
export EVERNOTE_CONSUMER_SECRET="your-consumer-secret"
# Generate SSL certificates (see README for details)
npx node index.jsClaude Desktop Configuration
Add to Claude Desktop config.json:
"mcpServers": {
"evernote": {
"command": "npx",
"args": ["evernote-mcp-server"]
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything