BuiltWith MCP

Live

BEARER TOKEN

TECH LOOKUP

Analytics

BuiltWith MCP gives agents authenticated tech-stack lookup: profile the technologies behind any domain, watch for stack changes, and pull firmographics under the user's own key.

  • Per-user credentials: each lookup runs on the actual user's BuiltWith key and quota, never a shared pool.
  • Encrypted per-tenant vault: AES-256, resolved at request time, never in LLM context.
  • Scoped before every call: pre-call scope check, 90-day SIEM-exportable audit chain.
BuiltWith MCP
agent · Acme Q3
Run
What is stripe.com built on, and have they changed their analytics stack lately?
S
builtwithmcp_domain_api
88ms
BuiltWith agent
React, Cloudflare, Segment, and Stripe's own stack. Analytics switched from Mixpanel to Amplitude 3 weeks ago.
Domain: 1 profiled
builtwithmcp
1 domain
18:29
Message Claude...

Tools your research agent reaches for in BuiltWith, scoped per user.

CALL ANY TOOL
Profile technology stacks end to end: look up a domain's technologies, map company to URL, pull firmographic and contact data, and track stack changes over time.
builtwithmcp_list_api
List api
List API JSON lookup for websites using a primary technology. Requires an active BuiltWith plan. OTHERTECHS are subordinate filters and do not consume additional primary technology report slots.
Parameters
Name
Type
Required
Description
tech
string
Required
Primary technology name, such as Shopify
aiMaturity
string
Optional
Filter results by BuiltWith's AI maturity score range for the site.
aiOpenness
string
Optional
Filter results by BuiltWith's AI openness score range for the site.
aiReadiness
string
Optional
Filter results by BuiltWith's AI readiness score range for the site.
aiVisibility
string
Optional
Filter results by BuiltWith's AI visibility score range for the site.
all
boolean
Optional
When true, includes all matching results rather than a summarized subset.
bwRank
string
Optional
Filter results by BuiltWith traffic rank range.
bws
string
Optional
Filter results by BuiltWith technology-adoption score range.
country
string
Optional
Two-letter country code to filter results by.
ecommerceCategory
string
Optional
Filter results by ecommerce product category.
employees
string
Optional
Filter results by estimated employee count range.
followers
string
Optional
Filter results by estimated social media follower count range.
majestic
string
Optional
Filter results by Majestic referring-domains rank range.
meta
boolean
Optional
When true, includes extra metadata fields in the response.
offset
string
Optional
Pagination offset : pass the value returned from the previous response to fetch the next page.
otherTechs
string
Optional
Optional comma-separated subordinate technology filters; these do not consume additional report slots
pageRank
string
Optional
Filter results by BuiltWith page rank range.
revenue
string
Optional
Filter results by estimated company revenue range.
since
string
Optional
Natural-language date range to filter by, e.g. 'last month' or 'last 6 months'. Defaults to 3 months if omitted.
sitemap
string
Optional
Filter results by estimated sitemap page count range.
sku
string
Optional
Filter results by estimated product/SKU count range (ecommerce sites).
spend
string
Optional
Filter results by estimated technology/ad spend range.
tranco
string
Optional
Filter results by Tranco traffic rank range.
builtwithmcp_ask_api
Ask api
builtwithmcp_vat_api
Vat api
builtwithmcp_free_api
Free api
builtwithmcp_tags_api
Tags api
builtwithmcp_trust_api
Trust api
builtwithmcp_usage_api
Usage api
builtwithmcp_change_api
Change api
builtwithmcp_domain_api
Domain api
builtwithmcp_trends_api
Trends api
builtwithmcp_vector_api
Vector api
builtwithmcp_whoami_api
Whoami api
builtwithmcp_product_api
Product api
builtwithmcp_keywords_api
Keywords api
builtwithmcp_x402_pricing
X402 pricing
builtwithmcp_domain_lookup
Domain lookup
builtwithmcp_redirects_api
Redirects api
builtwithmcp_payment_config
Payment config
builtwithmcp_relationships_api
Relationships api
builtwithmcp_payment_balance
Payment balance
builtwithmcp_recommendations_api
Recommendations api
builtwithmcp_payment_purchase
Payment purchase
builtwithmcp_ask_api_json
Ask api json
builtwithmcp_mcp_list_api
Mcp list api
builtwithmcp_x402_ask_api
X402 ask api
builtwithmcp_vat_types_api
Vat types api
builtwithmcp_x402_vat_api
X402 vat api
builtwithmcp_company_to_url
Company to url
builtwithmcp_x402_list_api
X402 list api
builtwithmcp_domain_api_json
Domain api json
Build your Agent
Same auth pattern across LangChain, OpenAI, Anthropic, and Google ADK.
Python · LlamaIndex
import { ScalekitClient } from "@scalekit-sdk/node";
import { createReactAgent } from "@langchain/langgraph/prebuilt";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

// BuiltWith tools scoped to this user
const { tools } = await sk.tools.listScopedTools("user_123", {
  filter: { connectionNames: ["builtwithmcp"], toolNames: [
    "builtwithmcp_list_api",
    "builtwithmcp_ask_api",
    "builtwithmcp_vat_api"] },
  pageSize: 100,
});

const agent = createReactAgent({ llm, tools });
await agent.invoke({ messages: [{ role: "user", content: "What is stripe.com built on, and have they changed their analytics stack lately?" }] });
import OpenAI from "openai";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
const openai = new OpenAI();

const { tools } = await sk.tools.listScopedTools("user_123", {
  filter: { connectionNames: ["builtwithmcp"] }, pageSize: 100,
});

const res = await openai.chat.completions.create({
  model: "gpt-5",
  messages: [{ role: "user", content: "What is stripe.com built on, and have they changed their analytics stack lately?" }],
  tools,
});

// Execute the tool call with the user's vaulted BuiltWith credential
await sk.tools.executeTool(res.choices[0].message.tool_calls[0], "user_123");
import Anthropic from "@anthropic-ai/sdk";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);
const anthropic = new Anthropic();

const { tools } = await sk.tools.listScopedTools("user_123", {
  filter: { connectionNames: ["builtwithmcp"] }, pageSize: 100,
});

const msg = await anthropic.messages.create({
  model: "claude-sonnet-5",
  max_tokens: 1024,
  messages: [{ role: "user", content: "What is stripe.com built on, and have they changed their analytics stack lately?" }],
  tools,
});

// Tool call runs with the user's vaulted BuiltWith credential
await sk.tools.executeTool(msg.content, "user_123");
import { Agent } from "@google/adk/agents";
import { ScalekitClient } from "@scalekit-sdk/node";

const sk = new ScalekitClient(env.SCALEKIT_ENV_URL, env.SCALEKIT_CLIENT_ID, env.SCALEKIT_CLIENT_SECRET);

const { tools } = await sk.tools.listScopedTools("user_123", {
  filter: { connectionNames: ["builtwithmcp"] }, pageSize: 100,
});

const agent = new Agent({
  name: "builtwith_agent",
  model: "gemini-2.5-pro",
  instruction: "Manage BuiltWith for the signed-in user.",
  tools,
});

await agent.run("What is stripe.com built on, and have they changed their analytics stack lately?");
Try these prompts
Copy any prompt into your agent. Each maps directly to a BuiltWith tool. Click to copy, paste into your agent, done.
Profile a site
Copy the prompt
Copied
What is stripe.com built on?
Copy the prompt
Copied
Which analytics tools does this domain use?
Copy the prompt
Copied
Map this company name to its primary domain.
Track changes
Copy the prompt
Copied
Has this domain changed its stack in the last month?
Copy the prompt
Copied
Which sites recently added Segment?
Copy the prompt
Copied
Alert me when this competitor adds a payment provider.
Enrich a list
Copy the prompt
Copied
Pull firmographics for these 20 domains.
Copy the prompt
Copied
Which of these prospects use a competitor's tag?
Copy the prompt
Copied
Find sites in fintech using React and Cloudflare.
SEE HOW AUTH WORKS
Your users connect once. Their BuiltWith credentials stay vaulted, every call is scope-checked, and every action is logged.
1
Authorize
Your user connects
BuiltWith MCP
once. We tie it to their identity and the meetings they approved — no shared bot account, no org-wide access
Who:
user ‘A’
when:
Once per user
access:
Limited to user
2
Store
Their
BuiltWith MCP
token lives in a vault scoped to them. User A's meetings are never reachable by an agent acting for user B, even on the same connection
vault:
encrypted
scope:
per-user
tokens:
auto-refreshed
3
Resolve
When your agent calls a
BuiltWith MCP
tool, we fetch the right token server-side. It never touches your agent, never appears in the LLM context, never shows up in your logs
speed:
~40ms
check:
before every call
seen by:
nobody
4
Audit
Every
BuiltWith MCP
tool call is logged — who triggered it, which meeting was fetched, what came back. 90 days of history, tied to the user who authorized it
history:
90 days
export:
SIEM-ready
logged:
every call
Test other agents
See the same per-user auth pattern across other analytics connectors.
People Ops and HR teams
New Hire Provisioning Agent
Open-source Python template. Creates or detects the hire in Deel, provisions their Workspace account, builds the Notion onboarding page, posts the welcome.
People Ops and HR teams
PTO & Leave Request Agent
Open-source Python template. Resolves the employee in Deel, validates against their real entitlement, submits the request for approval, blocks the calendar.
Engineering Teams
Incident Response Agent
Open-source Python template. Triggers the PagerDuty page, opens the Jira incident, notifies the on-call Slack channel, and drafts the Confluence postmortem.
GTM and RevOps Teams
Competitive intelligence briefing agent
Scans Gong calls for competitor mentions, matches each one to its Notion battlecard, and DMs every affected rep a single Slack digest per cycle. Every call runs as the PMM who owns the briefing, never a shared bot.
Test other agents
See the same per-user auth pattern across other analytics connectors.
SALES
Deal intelligence agent
Score Gong call risk with an LLM, cross-reference the Attio record, and DM each owner their at-risk deals in Slack.
ENGINEERING
Engineering standup agent
Pull commits from GitHub and GitLab, track Jira issue movement, and post a per-engineer standup brief to Slack.
Why Scalekit
Secure your agent's access. Connectors ship in minutes
01.
A shared key pools everyone's lookups
A shared BuiltWith key looks fine in a demo. In production every lookup draws on one balance, and one heavy user can exhaust the quota with no attribution. Scalekit resolves the credential of the actual user who triggered the agent, never a shared bot.
// shared token
audit → bot_service_account

// scalekit
audit → user_abc ✓
02.
Authentication is not authorization
03.
Multi-tenancy is architectural
04.
BuiltWith today. Ten connectors tomorrow.
“Our agents act across Salesforce, Gong, Google Drive, and more, on behalf of every customer. Scalekit behind the scenes meant we can keep adding tools without ever rebuilding how credentials or tool calling work.”
Venu Madhav Kattagoni
Head of Engineering / Von
FAQs
Frequently Asked Questions

Does the agent access BuiltWith as the user or as a shared key?
As the user. Each workspace member authorizes once and Scalekit resolves their credential at request time. Audit logs attribute every action to that user, not a shared service account.

Where is the BuiltWith bearer token stored?
In Scalekit's managed AES-256 token vault, namespaced per tenant. Refresh is automatic. Revocation is a single dashboard action. Tokens never appear in prompts, logs, or LLM context.

Can I limit what the agent is allowed to do in BuiltWith?
Yes. Pass a tool name filter to listScopedTools so the analytics agent only sees the subset you authorize. Pre-API-call scope checks block out-of-policy actions before the request reaches BuiltWith.

What happens when a user revokes BuiltWith access?
The connection is invalidated on the next tool call. Subsequent requests for that user fail closed with a clear error. Other users in the tenant remain unaffected. The event is logged for audit.

Does the agent respect BuiltWith permissions?
Yes. Every call runs as the authorizing user. Native roles, sharing settings, and scope restrictions in BuiltWith apply to each request, and actions log to the audit chain.

Start in your coding agent
Up and running in one command
Install the Scalekit skill in your editor of choice. Connector, auth, tools, prompt, all wired up
Claude Code REPL
/plugin marketplace add scalekit-inc/claude-code-authstack
/plugin install agentkit@scalekit-auth-stack
Cursor Code REPL
# ~/.cursor/mcp.json
{
""mcpServers"": {
""builtwithmcp"": {
""url"": ""https://mcp.scalekit.com/builtwithmcp"",
""headers"": { ""Authorization"": ""Bearer $SCALEKIT_TOKEN"" }
}
}
}
Codex Code REPL
# ~/.codex/config.toml
[mcp_servers.builtwithmcp]
url = ""https://mcp.scalekit.com/builtwithmcp""
auth_env = ""SCALEKIT_TOKEN""
Copilot Code REPL
# .vscode/mcp.json
{
""servers"": {
""builtwithmcp"": {
""url"": ""https://mcp.scalekit.com/builtwithmcp"",
""type"": ""http""
}
}
}