Clutch.co Mcp Server [PPR] avatar

Clutch.co Mcp Server [PPR]

Pricing

from $5.00 / 1,000 tool calls

Go to Apify Store
Clutch.co Mcp Server [PPR]

Clutch.co Mcp Server [PPR]

MCP server for AI agents to access Clutch.co B2B company profiles, reviews, and service provider data. Tools: get_company for profiles with service lines and industry focus, search_companies to browse categories, get_reviews with rating breakdowns. Connect from Claude, ChatGPT, or any MCP client.

Pricing

from $5.00 / 1,000 tool calls

Rating

0.0

(0)

Developer

zadexinho

zadexinho

Maintained by Community

Actor stats

1

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Share

Clutch MCP Server

MCP server that gives AI agents access to Clutch.co company profiles, client reviews, and B2B service provider data. Three tools: get_company returns detailed profiles with ratings, service lines, industry focus, and client size distribution. search_companies browses Clutch categories to find service providers. get_reviews returns client reviews with rating breakdowns, reviewer info, and project details. Connect from Claude Desktop, ChatGPT, Cursor, or any MCP-compatible client.

Available tools

ToolWhat it returns
get_companyCompany name, rating, review count, hourly rate, min project size, employee count, year founded, location, description, service lines with percentages, industry focus, client size distribution, social links, verified status.
search_companiesB2B service providers from Clutch categories with names, ratings, review counts, hourly rates, employee counts, and locations. Up to 100 results per call.
get_reviewsClient reviews with overall rating, rating breakdown (quality, schedule, cost, NPS), review text, reviewer name/title/company/industry, project budget and timeline, verified status. Up to 50 reviews per call.

How to connect

Claude Desktop / Cursor / Windsurf

Add to your MCP settings:

{
"mcpServers": {
"clutch": {
"type": "url",
"url": "https://zadexinho--clutch-mcp-server.apify.actor/mcp",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}

Via Apify MCP gateway

{
"mcpServers": {
"apify": {
"type": "url",
"url": "https://mcp.apify.com?tools=zadexinho/clutch-mcp-server",
"headers": {
"Authorization": "Bearer YOUR_APIFY_TOKEN"
}
}
}
}

Python (OpenAI Agents SDK)

from agents.mcp import MCPServerStreamableHttp
async with MCPServerStreamableHttp(
name="Clutch",
params={
"url": "https://zadexinho--clutch-mcp-server.apify.actor/mcp",
"headers": {"Authorization": "Bearer YOUR_APIFY_TOKEN"},
},
) as server:
tools = await server.list_tools()
# → get_company, search_companies, get_reviews

Tool reference

get_company

Get a company profile from Clutch.co.

ParameterTypeDescription
companystringClutch profile URL (e.g., "https://clutch.co/profile/company-name") or slug

Returns: name, slug, rating, reviewCount, hourlyRate, minProjectSize, employeeCount, yearFounded, location, description, serviceLines, industryFocus, clientSizeDistribution, socialLinks, isVerified, website.

search_companies

Browse Clutch categories or search for service providers.

ParameterTypeDefaultDescription
querystringrequiredClutch category URL (e.g., "https://clutch.co/web-developers") or search URL
max_resultsinteger20Number of results (1-100)

get_reviews

Get client reviews for a Clutch-listed company.

ParameterTypeDefaultDescription
companystringrequiredClutch profile URL or company slug
max_reviewsinteger20Number of reviews (1-50)

How much does it cost?

You are charged $0.005 per tool call. Each call fetches data and returns structured results.

ItemCost
Per tool call$0.005
Per 1,000 calls$5.00

Example: Researching 10 companies with reviews costs $0.10 (2 calls per company).

Use cases

  • Research B2B service providers by category, rating, and budget.
  • Compare agencies by service lines, industry focus, and client size.
  • Read detailed client reviews with quality/schedule/cost breakdowns.
  • Build AI workflows for vendor selection and due diligence.
  • Monitor competitor ratings and review volume on Clutch.
  • Identify agencies that serve your industry and budget range.
  • Feed B2B intelligence into procurement and partnership pipelines.

FAQ

How fast are tool responses?

Most calls return in 3-10 seconds. Clutch uses Cloudflare protection, so responses depend on proxy availability.

Do I need a Clutch account?

No. All data is publicly available on clutch.co.

What's the difference between this and the Clutch Scraper?

The scraper is for batch jobs — hundreds of company profiles exported as datasets with anti-detect browser support. This MCP server is for real-time AI agent queries — focused results returned directly to your agent.

Why might a request fail?

Clutch uses aggressive Cloudflare protection. The server uses residential proxies to handle this, but some requests may be blocked. The scraper actor is more reliable for batch operations.

Can I use this with ChatGPT?

Yes. Any MCP-compatible client works. Configure the server URL and your Apify API token.