agentmako vs everything
Side-by-side comparison to help you pick between these two MCP servers.
agentmako by drhalto | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 41 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
agentmako · Summary
Local-first MCP server providing codebase intelligence through structured context packets, diagnostics and SQLite-backed facts.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
agentmako · Use cases
- Understanding project structure and codebase before making changes
- Finding relevant files, routes, symbols and diagnostics in large codebases
- Extracting code conventions and patterns across projects
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
agentmako · Install
Install Node.js 20 or newer:
npm install -g agentmakoConnect to your project:
cd /path/to/your/project
agentmako connect . --no-dbConfigure your MCP client:
{
"mcpServers": {
"mako-ai": {
"command": "agentmako",
"args": ["mcp"]
}
}
}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