Skip to content

builtwith/mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🔍 BuiltWith MCP Server 🚀

🌟 Overview

BuiltWith MCP is a Model Context Protocol (MCP) server that allows AI assistants (Claude, Cursor, IDE agents, etc.) to query BuiltWith’s technology detection data directly and natively.

It enables natural-language questions like:

“What technologies does example.com use?” “Does this site run Shopify or Magento?” “What analytics stack is used by nytimes.com?”

BuiltWith MCP supports bring-your-own BuiltWith API key and can be used either as a hosted service or self-hosted.


🌐 Hosted MCP (Recommended)

BuiltWith provides a hosted MCP endpoint — no local Node process required.

Endpoint

https://api.builtwith.com/mcp

Authentication

Bring your own BuiltWith API key:

Authorization: Bearer YOUR_BUILTWITH_API_KEY

Example MCP request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list"
}

🧩 Supported Tools

The hosted MCP exposes the following tools:

  • domain-lookup – Live technology detection for a domain
  • domain-api – Full domain metadata
  • relationships-api – Related websites
  • free-api – Category and group counts
  • company-to-url – Company → domain discovery
  • tags-api – IP / attribute based discovery
  • recommendations-api – Technology recommendations
  • redirects-api – Live and historical redirects
  • keywords-api – Keyword intelligence
  • trends-api – Technology trend data
  • product-api – Ecommerce product search
  • trust-api – Trust scoring
  • financial-api – Financial data
  • social-api – Social profile associations

⚙️ Client Configuration (Claude, Cursor, IDEs)

Add BuiltWith MCP to your MCP-compatible client configuration.

Example

{
  "mcpServers": {
    "builtwith": {
      "url": "https://api.builtwith.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BUILTWITH_API_KEY"
      }
    }
  }
}

Configuration locations

  • Claude Desktop

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Cursor / Claude Dev (VS Code)

    • macOS: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
    • Windows: %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json

🛠️ Self-Hosting (Optional)

You can also run the BuiltWith MCP server locally or inside your own infrastructure.

Installation

git clone https://github.com/builtwith/mcp.git
cd mcp
npm install

Local (stdio) MCP configuration

{
  "mcpServers": {
    "builtwith": {
      "command": "node",
      "args": ["[PATH-TO]/bw-mcp-v1.js"],
      "env": {
        "BUILTWITH_API_KEY": "YOUR_BUILTWITH_API_KEY"
      }
    }
  }
}

Note: The hosted endpoint is recommended for most users. Self-hosting is useful if you need custom routing, rate-limiting, or private network access.


🚀 Usage Examples

Once configured, try asking your AI assistant:

  • “What technologies is example.com using?”
  • “What CMS does nytimes.com run on?”
  • “Does amazon.com use Google Analytics?”
  • “What JavaScript frameworks are used by spotify.com?”
  • “What hosting provider does netflix.com use?”
  • “Compare the technology stacks of facebook.com and twitter.com”

🧠 How It Works

  1. 🗣️ User asks a technology question in an AI assistant
  2. 🔌 The assistant calls the BuiltWith MCP server
  3. 🔍 MCP translates intent into BuiltWith API calls
  4. 📊 BuiltWith returns structured technology data
  5. 💬 The AI assistant presents human-friendly insights

📖 BuiltWith API Documentation


📄 License

MIT License — see the LICENSE file for details.


Built for AI-native workflows by BuiltWith

Just say which.

About

BuiltWith MCP Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published