Overview

The Clay MCP Server provides tools for finding, enriching, and managing contact and company data. It enables AI assistants to search for people at companies, look up specific contacts, and enrich data with additional information.

Resources

Resource URI Description
ui://clay/search-results Clay Search Results - displays search results in a widget

Tools

find-and-enrich-contacts-at-company

Search for contacts at a company by role, title, or department.

Parameters:

Parameter Required Type Description
companyIdentifier Yes string Domain (e.g., "stripe.com") or LinkedIn company URL
contactFilters No object Filters to narrow results
dataPoints No object Contact/company data points to enrich

Contact Filters:

Filter Type Description
job_title_keywords string[] Titles to include
job_title_exclude_keywords string[] Titles to exclude
headline_keywords string[] LinkedIn headline search
about_keywords string[] About/summary section search
certification_keywords string[] Certifications (e.g., ["AWS", "CPA"])
languages string[] Profile languages
school_names string[] Schools attended
current_role_min_months_since_start_date number Min months in role
current_role_max_months_since_start_date number Max months in role
locations string[] Locations to include
locations_exclude string[] Locations to exclude

Examples:

User Request Parameters
"Find people at OpenAI" companyIdentifier: "openai.com"
"VP Finance at HubSpot" companyIdentifier: "hubspot.com", contactFilters: { job_title_keywords: ["VP Finance"] }
"New hires at Stripe (last 3 months)" companyIdentifier: "stripe.com", contactFilters: { current_role_max_months_since_start_date: 3 }

find-and-enrich-list-of-contacts

Find and enrich specific named contacts at their companies.

Parameters:

Parameter Required Type Description
contacts Yes array Array of { contactName, companyIdentifier } objects
dataPoints No object Contact/company data points to enrich

Examples:

User Request Parameters
"Find John Smith at OpenAI" contacts: [{ contactName: "John Smith", companyIdentifier: "openai.com" }]
"Look up Jane Doe at Stripe and Bob Lee at Figma" contacts: [{ contactName: "Jane Doe", companyIdentifier: "stripe.com" }, { contactName: "Bob Lee", companyIdentifier: "figma.com" }]