# Icypeas — how to use (mcp.ai)

Connect your Icypeas account and use 22 tools for email straight from your AI agent. Connect with your own API key. Icypeas is an email discovery and verification tool that allows users to find and verify professional email addresses using first name, last name, and company domain.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_icypeas?ms=1787295960000`
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. `icypeas_bulk_email_search`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/icypeas`
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/icypeas/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/icypeas/bulk/email/search` — Initiate a bulk email search job to find professional email addresses for multiple people at once. Use this tool when you need to find emails for more than one person. Provide names (first and/or last
  - body: { data: string[][], name: string, task?: string, custom?: object }
- `POST https://api.mcp.ai/api/icypeas/bulk/find/profile/urls` — Tool to perform bulk search for profile URLs based on firstname, lastname, and company/domain or job title. Use when you need to find LinkedIn or other social profile URLs for multiple prospects at on
  - body: { data: object[], type?: string }
- `POST https://api.mcp.ai/api/icypeas/bulk/reverse/email/lookup` — Tool to find LinkedIn profile URLs for multiple professional email addresses in a single request. Use when you need to reverse lookup 2-50 email addresses to find their associated LinkedIn profiles. E
  - body: { data: string[] }
- `POST https://api.mcp.ai/api/icypeas/bulk/scrape` — Tool to scrape multiple LinkedIn profiles or companies in bulk (up to 50 per request). Use when you need to scrape multiple LinkedIn URLs at once. Returns a job ID that can be used with check_progress
  - body: { data: string[], type: string }
- `POST https://api.mcp.ai/api/icypeas/check/progress` — Check the processing progress of a search by its ID. Use this tool after initiating a single or bulk search to monitor its status. For mode='single': Checks progress of individual search items via /bu
  - body: { id: string, mode: string, next?: boolean, type?: string, limit?: integer, sorts?: integer|string[][], status?: string }
- `POST https://api.mcp.ai/api/icypeas/count/companies` — Tool to count companies in Icypeas database matching specified filters without returning data or being charged. Use when you need to know how many companies match specific criteria like industry, loca
  - body: { query: object }
- `POST https://api.mcp.ai/api/icypeas/count/people` — Tool to count people matching specified filters without retrieving data or consuming credits. Use when you need to assess the size of a people search result set before running the actual query.
  - body: { query: object }
- `POST https://api.mcp.ai/api/icypeas/domain/scan` — Tool to scan a domain for role-based email addresses. Use when you need to discover all role-based emails for a specific domain.
  - body: { custom?: object, domainOrCompany: string }
- `POST https://api.mcp.ai/api/icypeas/fetch/bulk/search/info` — Retrieve bulk search files with their status and progress. Lists all bulk searches (email, profile, company searches) with pagination support. Use to monitor bulk operation progress, check completion 
  - body: { file?: string, next?: boolean, limit?: integer, sorts?: integer|string[][], status?: string }
- `POST https://api.mcp.ai/api/icypeas/fetch/subscription/info` — Retrieves subscription details and remaining credits for an Icypeas account. Use this to check credit balances, subscription status, and user ID before performing searches. The email parameter must ma
  - body: { email: string }
- `POST https://api.mcp.ai/api/icypeas/find/companies` — Tool to search companies in Icypeas database. Use when you need to find companies matching filters like industry, location, or headcount.
  - body: { query: object, pagination?: object }
- `POST https://api.mcp.ai/api/icypeas/find/company/url` — Tool to find a single company profile URL using a company name or domain. Use when you need to initiate a profile-URL search for a given company identifier.
  - body: { companyOrDomain: string }
- `POST https://api.mcp.ai/api/icypeas/find/linkedin/profile/by/email` — Find the LinkedIn profile URL behind a single professional email address. Use when you need to identify the person associated with an email address. Costs 10 credits per found profile.
  - body: { email: string }
- `POST https://api.mcp.ai/api/icypeas/find/people` — Search for people/leads in the Icypeas database. Supports filtering by name, job title, company, location, skills, languages, school, and keywords. Each filter supports include/exclude lists. Returns 
  - body: { query: object, pagination?: object }
- `POST https://api.mcp.ai/api/icypeas/find/profile/url` — Finds a person's LinkedIn profile URL using their name and company or job title. Use this tool when you need to find someone's LinkedIn profile URL. Provide the person's first name, last name, and eit
  - body: { jobTitle?: string, lastname: string, firstname: string, companyOrDomain?: string }
- `POST https://api.mcp.ai/api/icypeas/find/single/email` — Initiates an asynchronous email search to find a prospect's email address using their name and company. Returns a search item ID that can be used with ICYPEAS_RETRIEVE_SEARCH_RESULTS to get the actual
  - body: { custom?: object, lastname?: string, firstname?: string, domainOrCompany: string }
- `POST https://api.mcp.ai/api/icypeas/parse/bulk/search/statistics` — Tool to parse bulk search statistics webhook. Use when processing the completion notification of a bulk search.
  - body: { data: object, signature: string, timestamp: string }
- `POST https://api.mcp.ai/api/icypeas/retrieve/search/results` — Tool to retrieve the results of a search by ID or to paginate through bulk search results. Use after initiating a search to fetch individual or multiple search results.
  - body: { id?: string, file?: string, mode: string, next?: boolean, type?: string, limit?: integer, sorts?: integer|string[][] }
- `POST https://api.mcp.ai/api/icypeas/scrape/company` — Tool to initiate scraping of a LinkedIn company page. Use when you have a LinkedIn company URL and need to retrieve company profile data. Returns a job ID that can be used with check_progress to fetch
  - body: { url: string }
- `POST https://api.mcp.ai/api/icypeas/scrape/profile` — Tool to initiate scraping of a LinkedIn profile. Use when you have a public LinkedIn profile URL and need a job ID and status to later fetch full details.
  - body: { url: string }
- `POST https://api.mcp.ai/api/icypeas/setup/notifications` — Provides instructions for setting up Icypeas push notifications/webhooks. Use this tool when you need to configure real-time notifications for bulk searches or single search updates. Note: Webhooks mu
- `POST https://api.mcp.ai/api/icypeas/verify/email` — Tool to verify if a specific email address exists and is valid. Use when you need to check email deliverability. Returns a verification item ID that can be used with ICYPEAS_RETRIEVE_SEARCH_RESULTS to
  - body: { email: string, custom?: object }

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

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