everything vs remind
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | remind by sandst1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 78 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
remind · Summary
Remind is an AI agent memory layer that extracts and maintains generalized concepts rather than verbatim text.
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
remind · Use cases
- Project memory management for development teams using AI coding assistants
- Research assistance by consolidating and recalling information across multiple sessions
- Personal knowledge management for AI-powered workflows
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-everythingremind · Install
# Install the package
pip install remind-mcp
# Start the MCP server
remind-mcp --port 8765Configure Claude Desktop:
{
"mcpServers": {
"remind": {
"url": "http://127.0.0.1:8765/sse?db=my-project"
}
}
}Optionally, install with additional features:
pip install "remind-mcp[postgres]" # For PostgreSQL support
pip install "remind-mcp[rerank]" # For cross-encoder reranking