Audrey vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Audrey by Evilander | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
Audrey · Summary
Persistent memory engine for AI agents with MCP integration and REST API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Audrey · Use cases
- Preventing AI agents from repeating previous mistakes by storing and recalling failures
- Providing persistent context across sessions for AI development tools
- Acting as a memory layer for custom AI agents with preflight action checking
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
Audrey · Install
# Install via npm
npm install -g audrey
# Basic setup
npx audrey doctor
# Install for Claude Code
npx audrey install --host claude-code
# Verify installation
claude mcp listFor Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"audrey": {
"command": "npx",
"args": ["audrey", "mcp-config", "generic"]
}
}
}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