builtwith-mcp
BuiltWith MCP Server
Documentation
๐ 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.
Claude DEMO
Shows how to get this working in Claude as a Connector
https://github.com/user-attachments/assets/1199362a-c813-497e-8569-15b9a3ce9713
๐ Hosted MCP (Recommended)
BuiltWith provides a hosted MCP endpoint โ no local Node process required.
Endpoint
https://api.builtwith.com/mcpAuthentication
Bring your own BuiltWith API key:
Authorization: Bearer YOUR_BUILTWITH_API_KEYExample 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
- `change-api` โ Technology additions and removals with business context
- `lists-api` โ Sites using a technology, including `OTHERTECHS` and numeric attribute filters such as `SPEND`, `REVENUE`, and `EMPLOYEES`
- `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
- `vat-api` โ VAT, GST, and other company registration numbers for websites
- `vat-types-api` โ Reference list of registration types returned by `vat-api` (no API key required)
- `whoami-api` โ Account limits, credit costs, and endpoint inventory (no API credits)
- `usage-api` โ Current credit balance (no API credits)
- `mcp-registry-api` โ Search and browse the BuiltWith MCP registry (v1) of other remote MCP servers (no API credits)
- `mcp-registry-v2-api` โ Search and browse the BuiltWith MCP registry (v2) of other remote MCP servers, with per-endpoint auth flags and first/last detected dates (no API credits)
- `vector-search` โ Semantic similarity search across technologies and categories
- `ask-api` โ Natural language website list lookup (e.g. "Magento websites in Spain"); supports full reports and pagination
- `payment-balance` โ Check your API credit balance
- `payment-config` โ Retrieve your payment configuration
- `payment-purchase` โ Purchase API credits using your saved Stripe payment method
- `agent-auth-start` โ Start Agent Device-Code Authorization (no API key required)
- `agent-auth-token` โ Poll for authorization result and retrieve access token (no API key required)
โ๏ธ 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
- Cursor / Claude Dev (VS Code)
๐ ๏ธ Self-Hosting (Optional)
You can also run the BuiltWith MCP server locally or inside your own infrastructure.
What changed (February 14, 2026)
The local server now supports both standard MCP transports:
- `stdio` (default) for local MCP clients like Claude Desktop/Cursor
- `http` for remote/connector style MCP usage on `/mcp`
Installation
git clone https://github.com/builtwith/builtwith-mcp.git
cd builtwith-mcp
npm installLocal (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.
Local HTTP MCP endpoint
Run in HTTP mode:
MCP_TRANSPORT=http PORT=8787 node bw-mcp-v1.jsMCP endpoint:
http://127.0.0.1:8787/mcpOptional headers/environment:
- `Authorization: Bearer YOUR_BUILTWITH_API_KEY` (per-request API key for HTTP mode)
- `BUILTWITH_API_KEY` (used by stdio mode, and as fallback when no HTTP bearer token is provided)
- `MCP_ALLOWED_ORIGINS` (comma-separated CORS/origin allowlist for HTTP mode)
Health check:
http://127.0.0.1:8787/health๐ Agent Device-Code Authorization
Agents can obtain a temporary `bw-` prefixed API token without the user pasting their key โ the user approves access in their browser.
Flow:
1. Call `agent-auth-start` โ receive `device_code` and `verification_uri`
2. Direct the user to open `verification_uri` in their browser
3. Poll `agent-auth-token` every 5 seconds with the `device_code`
4. On approval, receive an `access_token` (`bw-...`) valid for the chosen duration (1 hour / 1 day / 30 days)
5. Use the token as `KEY=bw-...` on any BuiltWith API endpoint
No API key is required to call `agent-auth-start` or `agent-auth-token`.
๐ 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
Just say which.
Frequently asked questions
What is builtwith-mcp?
builtwith-mcp is BuiltWith MCP Server
How do I install builtwith-mcp?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is builtwith-mcp open source?
Yes โ it is hosted on GitHub at https://github.com/builtwith/builtwith-mcp and has 41 stars.
Related MCP tools
๐ฅ Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Use any LLMs (Large Language Models) for Deep Research. Support SSE API and MCP server.
Enhanced MCP server for interactive user feedback and command execution in AI-assisted development, featuring dual interface support (Web UI and Desktop Application) with intelligent environment detection and cross-platform compatibility.
A powerful Zotero AI and MCP plugin with ChatGPT, Gemini 3.7, Claude Fable 5, Claude Opus 5, DeepSeek V4, Grok, OpenRouter, Kimi k3, GLM 5.3, SiliconFlow, GPT-oss, Gemma 4, Qwen 3.8
Connect your browser to AI models. Just use Dia on Chrome, Arc or Firefox.
ๆ้ข MCP Server ๅฏไปฅ่ฎฉ AI ่ชๅจๅฐ Markdown ๆ็ซ ๆ็ๅๅๅธ่ณๅพฎไฟกๅ ฌไผๅทใ
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP