MCP Catalogs
Home

everything vs builtwith-api

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

everything
by modelcontextprotocol
builtwith-api
by zcaceres
Stars★ 85,748★ 20
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingDeveloper ToolsAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

everything · Summary

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

builtwith-api · Summary

A robust MCP server that exposes 13 BuiltWith API tools for web technology analysis via LLM agents.

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

builtwith-api · Use cases

  • LLM agents analyzing website technology stacks for competitive research
  • Automated monitoring of technology adoption trends across domains
  • Web developers researching technologies used by popular sites

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

builtwith-api · Install

Install the MCP server separately:

npm install -g builtwith-mcp

Configure Claude Desktop:

{
  "mcpServers": {
    "builtwith": {
      "command": "npx",
      "args": ["-y", "builtwith-mcp"],
      "env": {
        "BUILTWITH_API_KEY": "YOUR_KEY"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.