everything vs mcp-server-memos-py
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-memos-py by RyoJerryYu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 21 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | ProductivityKnowledge GraphAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-memos-py · Summary
Python MCP server enabling LLM interaction with Memos for memo search, creation, and management.
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
mcp-server-memos-py · Use cases
- Automate memo creation and management through LLM interactions
- Search and retrieve existing memos using natural language queries
- Integrate Memos knowledge base into AI workflows for enhanced context
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-everythingmcp-server-memos-py · Install
Installation
Via Smithery (Recommended for Claude Desktop)
npx -y @smithery/cli install @RyoJerryYu/mcp-server-memos-py --client claudeManual Installation
pip install mcp-server-memosClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"memos": {
"command": "uvx",
"args": [
"--prerelease=allow",
"mcp-server-memos",
"--host",
"localhost",
"--port",
"5230",
"--token",
"your-access-token-here"
]
}
}
}