sticky-notes-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
sticky-notes-server by bsmi021 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 28 | 77 |
| Official | — | ✓ |
| Categories | ProductivityKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 15 mo ago | this month |
sticky-notes-server · Summary
MCP server for managing sticky notes with REST API, WebSocket support, and React UI.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sticky-notes-server · Use cases
- Personal note-taking with cross-device synchronization
- Team collaboration through shared notes and conversations
- Knowledge management with hierarchical tags and sections
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
sticky-notes-server · Install
# Clone the repository
git clone https://your.repo.url/sticky-notes-server.git
cd sticky-notes-server
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm startIntegration with Claude Desktop: Add to your claude_desktop_config.json:
{
"mcpServers": {
"stickyNotes": {
"command": "node",
"args": ["path/to/sticky-notes-server/build/index.js"],
"env": {
"DB_ROOT": "desired/db/location",
"WEB_UI_PORT": "3000",
"WS_PORT": "8080"
}
}
}
}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