ClueoMCP vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ClueoMCP by ClueoFoundation | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 74 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 10 mo ago | this month |
ClueoMCP · Summary
Universal AI personality layer using Big Five psychology model for consistent behavior across MCP-compatible platforms.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ClueoMCP · Use cases
- Enterprise brand consistency across AI interactions
- Creating context-aware AI personalities for different departments
- Personal AI enhancement with project-specific personalities
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
ClueoMCP · Install
Installation
NPM Install (Recommended)
npm install -g @openclueo/mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"clueo-mcp": {
"command": "@openclueo/mcp",
"env": {
"CLUEO_API_URL": "https://backend.clueoai.com",
"CLUEO_API_KEY": "your_api_key_here"
}
}
}
}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