# Clutch.co Mcp Server \[PPR] (`zadexinho/clutch-mcp-server`) Actor

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.

- **URL**: https://apify.com/zadexinho/clutch-mcp-server.md
- **Developed by:** [zadexinho](https://apify.com/zadexinho) (community)
- **Categories:** MCP servers, Agents, Lead generation
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 tool calls

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### 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

| Tool | What it returns |
|------|----------------|
| `get_company` | Company 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_companies` | B2B service providers from Clutch categories with names, ratings, review counts, hourly rates, employee counts, and locations. Up to 100 results per call. |
| `get_reviews` | Client 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:

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

#### Via Apify MCP gateway

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

#### Python (OpenAI Agents SDK)

```python
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.

| Parameter | Type | Description |
|-----------|------|-------------|
| `company` | string | Clutch 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.

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `query` | string | required | Clutch category URL (e.g., "https://clutch.co/web-developers") or search URL |
| `max_results` | integer | 20 | Number of results (1-100) |

#### get\_reviews

Get client reviews for a Clutch-listed company.

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `company` | string | required | Clutch profile URL or company slug |
| `max_reviews` | integer | 20 | Number 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.

| Item | Cost |
|------|------|
| 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.

# Actor input Schema

## Actor input object example

```json
{}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("zadexinho/clutch-mcp-server").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("zadexinho/clutch-mcp-server").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call zadexinho/clutch-mcp-server --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=zadexinho/clutch-mcp-server",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/YrNToY4kyATaEoc98/builds/MfUnVphVgryXdUf6m/openapi.json
