MCP Catalogs
Home

bruno-mcp vs everything

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

bruno-mcp
by macarthy
everything
by modelcontextprotocol
Stars★ 23★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolstestingProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

bruno-mcp · Summary

MCP server for programmatically generating Bruno API testing files, collections, environments, and requests.

everything · Summary

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

bruno-mcp · Use cases

  • Automatically generate API test collections for new microservices
  • Create and manage testing environments for different stages
  • Generate API test suites for legacy documentation conversion

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

bruno-mcp · Install

Installation

# Clone the repository
git clone https://github.com/macarthy/bruno-mcp.git
cd bruno-mcp

# Install dependencies
npm install

# Build the project
npm run build

Claude Desktop Integration

Add the following to your Claude Desktop config file:

{
  "mcpServers": {
    "bruno-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/bruno-mcp/dist/index.js"],
      "env": {}
    }
  }
}

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.