MCP Catalogs
Home

bonnard-cli vs everything

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

bonnard-cli
by bonnard-data
everything
by modelcontextprotocol
Stars★ 48★ 85,748
30d uses
Score4577
Official
Categories
AI / LLM ToolsDeveloper ToolsDatabase
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

bonnard-cli · Summary

Bonnard CLI provides an agent-native analytics platform with MCP server integration for governed data queries.

everything · Summary

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

bonnard-cli · Use cases

  • AI agents querying governed metrics through MCP for consistent answers
  • Creating markdown dashboards with various chart components
  • Deploying semantic layers with versioning and CI/CD support

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

bonnard-cli · Install

Install with npm:

npm install -g @bonnard/cli

Setup the MCP server:

bon mcp

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "bonnard": {
      "command": "npx",
      "args": ["@bonnard/cli", "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
Comparison generated from public README + GitHub signals. Last updated automatically.