MCPNotes vs everything
Side-by-side comparison to help you pick between these two MCP servers.
MCPNotes by 9Ninety | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 36 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
MCPNotes · Summary
A dual-server MCP system for AI-powered note-taking with web interface and DynamoDB storage.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCPNotes · Use cases
- Personal knowledge management with AI assistance
- Meeting documentation and action item tracking
- Research note organization and synthesis
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
MCPNotes · Install
Installation
**Recommended:** Run directly with npx or bunx
**Alternative:**
- Clone this repository
- Install dependencies with
npm install
Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-notes": {
"command": "npx",
"args": [
"-y",
"-p",
"mcp-notes",
"mcp-notes-server",
"--dynamodb",
"dynamodb://<access_key>:<secret_key>@<region>/<table>"
]
}
}
}Web Server
npx -p mcp-notes mcp-notes-web-server --dynamodb "dynamodb://<access_key>:<secret_key>@<region>/<table>"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