# DiscoLike MCP Server
Canonical page: https://discolike.com/mcp/  |  Client setup docs: https://docs.discolike.com/mcp/  |  REST alternative: https://discolike.com/api/

Remote Model Context Protocol server with 48 tools over an index of 80M+ crawled business websites. An agent describes an ideal customer in plain language, passes seed domains, or matches exact homepage phrases, and gets back ranked companies with firmographics, technographics, and contacts. Streamable HTTP, OAuth 2.1, nothing to install locally.

- Server URL: `https://api.discolike.com/v1/mcp`
- Auth: OAuth 2.1, browser authorization on first use, token stored by the client
- Requires a paid plan from $99/month. No free tier.

## Tools

- **Discovery**: Find companies by natural language ICP, lookalike domains, exact homepage phrases, tech stack, industry, size, country, and language. Count results before running a full search.
- **Company data**: Firmographics, vendor and technology detection, digital footprint score, quarterly growth metrics, redirect chains, and corporate hierarchy for any of 80M+ domains.
- **Contacts**: Search people at discovered companies by persona, seniority, and department. Returns verified email, phone, and LinkedIn URL. Name-to-record matching costs nothing.
- **Enrichment and analysis**: Bulk append by CSV, ML segmentation of a domain list into described clusters, ICP fit validation, and DiscoGen research agents that run your prompt per company.
- **Workflow and CRM**: Saved queries, exclusion lists, tags, and push to HubSpot, Salesforce, or Pipedrive without leaving the agent.

## Install

### Claude Code

Terminal

```bash
claude mcp add --transport http discolike https://api.discolike.com/v1/mcp
```

Run /mcp, pick DiscoLike, choose Authenticate. A browser window handles login.

### Codex

Terminal

```bash
codex mcp add discolike --url https://api.discolike.com/v1/mcp --oauth-resource https://api.discolike.com/v1/mcp
```

Codex opens the browser for OAuth on first use.

### Cursor

.cursor/mcp.json

```json
{
  "mcpServers": {
    "discolike": { "url": "https://api.discolike.com/v1/mcp" }
  }
}
```

Settings, Tools, then Connect next to DiscoLike.

### VS Code

.vscode/mcp.json

```json
{
  "servers": {
    "discolike": { "url": "https://api.discolike.com/v1/mcp" }
  }
}
```

VS Code prompts to authorize the first time Copilot calls a tool.

### Windsurf

~/.codeium/windsurf/mcp_config.json

```json
{
  "mcpServers": {
    "discolike": { "serverUrl": "https://api.discolike.com/v1/mcp" }
  }
}
```

Reload MCP servers in Windsurf settings after saving.

### Claude Desktop

Settings, Connectors

```bash
Add Custom Connector
Name: DiscoLike
URL:  https://api.discolike.com/v1/mcp
```

Click Connect and authorize in the browser.

## Skill for Claude Code, Codex, Cursor

The DiscoLike skill teaches the agent when to use DiscoLike, which access mode to pick, how to search well, and how to open an account without a browser. Source: https://github.com/Discolike/discolike-skills

```text
/plugin marketplace add Discolike/discolike-skills
/plugin install discolike@discolike
```

## Creating the account from an agent

One unauthenticated POST creates the account. No credential is returned. The person receives a confirmation email, logs in at https://app.discolike.com, picks a plan from $99/month, and issues the API key or authorizes the MCP client. Free-mail and disposable domains are rejected; `409` means the account already exists.

```http
POST https://api.discolike.com/v1/public/signup
Content-Type: application/json

{
  "email": "jane@acme.com",
  "first_name": "Jane",
  "last_name": "Doe",
  "agent": "claude-code"
}
```

Prompt to give an agent:

> Create a DiscoLike account for me. Send POST https://api.discolike.com/v1/public/signup with Content-Type: application/json and body {"email": "<my work email>", "first_name": "<my first name>", "last_name": "<my last name>", "agent": "<your name>"}. No auth header is needed. Ask me for any value you don't know. Then relay the next_step text from the response to me. Reference: https://docs.discolike.com/guides/agent-signup/

Guide: https://docs.discolike.com/guides/agent-signup/
Auth summary: https://discolike.com/auth.md

## Example prompts

1. Find 500 companies that look like stripe.com, adyen.com, and checkout.com. US and UK only, 50 to 500 employees.
2. List B2B companies whose homepage says "managed detection and response" and are headquartered in Germany. Count first, then pull 200.
3. Which of these 300 domains from our CRM use HubSpot and have grown headcount this year? Return a CSV.
4. Segment our 2,000 customers into ICP clusters, describe each, then find 1,000 lookalikes for the biggest cluster.
5. For the top 100 results, find the VP Sales or Head of Revenue with a verified email and push them to HubSpot.

## FAQ

### What is the DiscoLike MCP server?

A remote Model Context Protocol server at https://api.discolike.com/v1/mcp that gives an AI agent 48 tools for company discovery, firmographics, technographics, contact search, enrichment, and CRM push across 80M+ business websites. It runs over streamable HTTP with OAuth 2.1, so there is no key to paste into a config file.

### Which clients work with it?

Any MCP client that supports remote servers over streamable HTTP: Claude Code, Claude Desktop, Codex, Cursor, VS Code, and Windsurf are documented. Add the server URL, authorize once in the browser, and the tools appear in the client.

### Is there a free tier for the MCP server?

No. The MCP server and the REST API require a paid plan, starting at $99 per month on Starter. The full subscription converts to search credits, and records already retrieved in the last 90 days are free to retrieve again. There is a free one-search demo on the website for people who want to see results before paying.

### How does the agent pay for searches?

Each search costs a query fee plus a fee per 1,000 new records, billed against the account's credit balance. The MCP returns a query plan and a count before a full run, so the agent can size the request and avoid pulling more records than the task needs.

### How is this different from the Apollo or ZoomInfo MCP servers?

Those servers sit on top of LinkedIn-derived contact databases and return the companies attached to those contacts. DiscoLike starts from a crawl of 80M+ business websites, so the agent searches by what a company actually does, including exact homepage phrases and detected vendors, and reaches companies that have little or no LinkedIn presence. Coverage is roughly 3x in niche verticals.

### Can an agent create the account too?

Yes. An unauthenticated POST to https://api.discolike.com/v1/public/signup with email, first name, last name, and the agent's name creates the account. No credential is returned to the agent. The person confirms by email, logs in, picks a plan, and authorizes the MCP client from there.
