MCP Server
SiteIntelica as an MCP server. Run scans, search by tech stack, find contacts, manage monitoring, and compare sites — directly from Claude Code, Claude Desktop, Cursor, or any other MCP client.
Quick start
- Sign up and generate an API key on the API & Keys page.
- Add the config block below to your MCP client.
- Restart the client. The 10 SiteIntelica tools become available immediately.
Claude Desktop
Edit claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"siteintelica": {
"command": "npx",
"args": ["-y", "@siteintelica/mcp"],
"env": {
"SITEINTELICA_API_KEY": "sk_your_key_here"
}
}
}
} Claude Code
claude mcp add siteintelica \
-e SITEINTELICA_API_KEY=sk_your_key_here \
-- npx -y @siteintelica/mcp Cursor
Edit ~/.cursor/mcp.json (or use the in-app MCP settings) with the same mcpServers block as Claude Desktop.
Available tools
| Tool | Description |
|---|---|
scan_url | Run a fresh scan and return the full report. |
get_latest_report | Fetch the most recent cached scan without using quota. |
search_by_tech | Find sites using specific technologies — sales prospecting gold. |
list_top_technologies | Browse the most-detected technologies + usage stats. |
find_contacts | Discover public emails and social handles for a domain. |
list_monitored_domains | Show every domain you are monitoring. |
add_monitor | Start monitoring a domain (Pro/Business). |
remove_monitor | Stop monitoring a domain. |
compare_sites | AI competitive gap analysis between two scanned domains. |
summarize_site | AI executive summary + SWOT for a scanned domain. |
Self-hosted / staging
Override the base URL with SITEINTELICA_BASE_URL:
"env": {
"SITEINTELICA_API_KEY": "sk_...",
"SITEINTELICA_BASE_URL": "https://staging.example.com"
} Source code
The MCP server lives in the mcp/ directory of the SiteIntelica repo. PRs welcome.