mengram vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mengram by alibaizhanov | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 167 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mengram · Summary
Mengram is a human-like memory system for AI agents with semantic, episodic & procedural memory that learns from failures.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mengram · Use cases
- Enhancing AI agent memory with contextual recall across conversations
- Automating workflow evolution based on past failures
- Building personalized cognitive profiles for LLMs
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
mengram · Install
Install Mengram MCP server using npm or pip:
npm install mengram-ai
# or
pip install mengram-aiConfigure Claude Desktop by adding this to your config.json:
{
"mcpServers": {
"mengram": {
"command": "mengram",
"args": ["server", "--cloud"],
"env": { "MENGRAM_API_KEY": "om-..." }
}
}
}Get your free API key at https://mengram.io/#signup
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