# Company URL Finder — how to use (mcp.ai)

Connect your Company URL Finder account and use 3 tools for sales and CRM straight from your AI agent. Connect with your own API key. Find company domains, company names, and LinkedIn company-page URLs from company identifiers.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_company_url_finder?ms=1787291400000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `company_url_finder_find_company_domain`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/company_url_finder`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/company_url_finder/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/company_url_finder/find/company/domain` — Find a company's official website domain using its name and two-character country code. A found record consumes one credit; a no-match does not.
  - body: { company_name: string, country_code: string }
- `POST https://api.mcp.ai/api/company_url_finder/find/company/linkedin/url` — Find a company's LinkedIn company-page URL from either its name or bare domain. A found record consumes one credit; a no-match does not.
  - body: { query: string }
- `POST https://api.mcp.ai/api/company_url_finder/find/company/name` — Find the provider's company name associated with a bare website domain. A found record consumes one credit; a no-match does not.
  - body: { domain: string }

## Example prompts
- "What can I do in Company URL Finder?"
- "Show me a summary of my Company URL Finder account"

## More
- Page: https://mcp.ai/company_url_finder
- Agent spec (llms.txt): https://mcp.ai/company_url_finder/llms.txt
- Postman collection: https://mcp.ai/company_url_finder/postman.json
