MCP Catalogs
Home

booklib vs everything

Side-by-side comparison to help you pick between these two MCP servers.

booklib
by booklib-ai
everything
by modelcontextprotocol
Stars★ 28★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

booklib · Summary

BookLib is an MCP server that detects AI knowledge gaps in projects and injects context at runtime to fix outdated code patterns.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

booklib · Use cases

  • Fixing outdated API calls in codebases that use newer library versions than AI training data
  • Enforcing team coding standards and decisions through real-time code injection
  • Automating documentation integration for post-training packages across multiple ecosystems

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

booklib · Install

Install BookLib globally:

npm install -g @booklib/core

Initialize the tool:

booklib init

For Claude Desktop integration, BookLib automatically configures MCP during initialization. The generated configuration can be found in your Claude Desktop config directory under the booklib section.

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
Comparison generated from public README + GitHub signals. Last updated automatically.