Descovo

// QUICKSTART

Connect the hosted MCP server.

Descovo runs as a hosted Model Context Protocol server at https://mcp.descovo.com/mcp. Add it to Claude Code, Cursor, or another compatible client with the x-api-key header; no npm package or local process is required for those clients. Your agent can search the B2B graph for 0 credits. Each reveal attempt costs 1 credit, including not-found results. When available, work email and direct phone are returned together under that credit. Grab an API key from your dashboard — the Free plan includes 500 credits/month — then use one of the configs below. See all plans.

// 1 — Connect

Terminal
claude mcp add --transport http \
  --header "x-api-key: sk_live_••••••••••••••••" \
  descovo https://mcp.descovo.com/mcp

// 2 — Ask your agent

>“Find me VPs of Engineering at financial-services companies in the US, with available work email and direct phone fields.”

// REST endpoints

POST

/v1/company-search

Search companies by name, domain, size, industry.

POST

/v1/people-search

Search people by role, seniority, company, region.

POST

/v1/contact-details/single

Each reveal attempt costs 1 credit, including not-found results. When available, work email and direct phone are returned together under that credit.

GET

/v1/get-org-credits

Current credit balance for the API key.

GET

/v1/enums/regions

Supported regions for filtering.

GET

/v1/enums/industries

Supported industry taxonomy.

Direct REST calls currently pass the key as apiKey: in the query string for GET requests and in the JSON body for POST requests. The x-api-key header is for the hosted MCP connection.