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.
BuiltWith provides a hosted MCP endpoint — no local Node process required.
https://api.builtwith.com/mcp
Bring your own BuiltWith API key:
Authorization: Bearer YOUR_BUILTWITH_API_KEY
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}The hosted MCP exposes the following tools:
domain-lookup– Live technology detection for a domaindomain-api– Full domain metadatarelationships-api– Related websitesfree-api– Category and group countscompany-to-url– Company → domain discoverytags-api– IP / attribute based discoveryrecommendations-api– Technology recommendationsredirects-api– Live and historical redirectskeywords-api– Keyword intelligencetrends-api– Technology trend dataproduct-api– Ecommerce product searchtrust-api– Trust scoringfinancial-api– Financial datasocial-api– Social profile associations
Add BuiltWith MCP to your MCP-compatible client configuration.
{
"mcpServers": {
"builtwith": {
"url": "https://api.builtwith.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_BUILTWITH_API_KEY"
}
}
}
}-
Claude Desktop
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
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
- macOS:
You can also run the BuiltWith MCP server locally or inside your own infrastructure.
git clone https://github.com/builtwith/mcp.git
cd mcp
npm install{
"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.
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”
- 🗣️ User asks a technology question in an AI assistant
- 🔌 The assistant calls the BuiltWith MCP server
- 🔍 MCP translates intent into BuiltWith API calls
- 📊 BuiltWith returns structured technology data
- 💬 The AI assistant presents human-friendly insights
MIT License — see the LICENSE file for details.
Built for AI-native workflows by BuiltWith
Just say which.