everything vs src-to-kb
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | src-to-kb by vezlo | |
|---|---|---|
| Stars | ★ 85,748 | ★ 32 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
src-to-kb · Summary
MCP server that converts source code to searchable knowledge base with IDE integration.
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
src-to-kb · Use cases
- Search codebase with natural language queries in IDEs like Claude Code and Cursor
- Generate embeddings and vector search for codebase exploration
- Integrate Notion documentation with source code in a unified knowledge base
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-everythingsrc-to-kb · Install
Install the package globally via npm:
npm install -g @vezlo/src-to-kbTo start the MCP server:
src-to-kb-mcpFor Claude Desktop integration, add this to your claude_desktop_config.json:
{
"mcpServers": {
"src-to-kb": {
"command": "src-to-kb-mcp"
}
}
}