Company Intelligence MCP — Company Profiles & Funding for AI
Pricing
from $10.00 / 1,000 company search (per query)s
Company Intelligence MCP — Company Profiles & Funding for AI
Give your AI agent instant access to 100,000+ Crunchbase-grade company profiles and funding rounds over MCP. Search by name, country, employee size or status; pull full profiles — people, tech stack, funding, growth signals — plus funding-round data. No query-time scraping; pay per call.
Pricing
from $10.00 / 1,000 company search (per query)s
Rating
0.0
(0)
Developer
Muhamed Didovic
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Company Intelligence MCP Server
A Model Context Protocol (MCP) server running as an Apify Standby actor. It gives AI agents (Claude, Cursor, custom agents — any MCP client) instant, structured access to a company-intelligence warehouse:
- 100,000+ company profiles — identity, location, website, employee range, operating/IPO status, funding totals, tech-stack counts, categories, and more (Crunchbase-grade data).
- Funding-round signals — round type, money raised (USD + original currency), announcement date, linked company.
No scraping happens at query time — every tool is a fast read against the pre-collected warehouse.
Endpoint
POST https://memo23--company-intelligence-mcp.apify.actor/mcpAuthorization: Bearer <YOUR_APIFY_TOKEN>
Transport: Streamable HTTP (stateless). A plain GET / returns a small identity blob.
MCP client configuration
Claude Desktop / Cursor style config (any client supporting remote Streamable HTTP servers):
{"mcpServers": {"company-intelligence": {"url": "https://memo23--company-intelligence-mcp.apify.actor/mcp","headers": {"Authorization": "Bearer <YOUR_APIFY_TOKEN>"}}}}
Get your Apify token at Apify Console → Settings → API & Integrations.
Tools
1. search_companies
Search the company warehouse. All filters optional and combinable.
| Param | Type | Description |
|---|---|---|
query | string | Full-text word/prefix match on name & description, e.g. "ai" → AI, OpenAI (not a raw substring). Multiple words are AND-ed. |
country | string | Full country name, e.g. "United States", "Germany" |
employeeRange | string | e.g. "1-10", "11-50", "1001-5000", "10001+" |
operatingStatus | string | "active" or "closed" |
limit | number | 1–25, default 10 |
Example call:
{ "name": "search_companies", "arguments": { "query": "ai", "country": "Germany", "limit": 5 } }
Returns slim rows (name, permalink, website, city, country, employeeRange, operatingStatus, foundedOn, description ≤ 200 chars) ordered by Crunchbase rank, plus totalMatches.
2. get_company_profile
Full clean profile for one company.
| Param | Type | Description |
|---|---|---|
permalink | string | Company slug from search_companies, e.g. "openai" |
Example call:
{ "name": "get_company_profile", "arguments": { "permalink": "openai" } }
Returns the complete structured record: identity, funding (total USD, rounds, investors), people/employee data, tech stack, categories, signals, contact fields where available.
3. get_funding_rounds
A cross-company feed of notable funding rounds (with clean USD amounts), newest first — best for discovery by date/type/company. For one company's full round history, use get_company_profile (its funding.rounds is more complete than this signals table). All filters optional.
| Param | Type | Description |
|---|---|---|
companyPermalink | string | Only rounds raised by this company |
announcedAfter | string | ISO date YYYY-MM-DD |
investmentType | string | e.g. "seed", "series_a", "series_b" |
limit | number | 1–25, default 10 |
Example call:
{ "name": "get_funding_rounds", "arguments": { "investmentType": "series_a", "announcedAfter": "2025-01-01", "limit": 10 } }
Returns round rows: name, investmentType, moneyRaisedUsd, moneyRaised + moneyCurrency, announcedOn, companyPermalink.
Pricing (pay-per-event)
| Event | Tool | Price |
|---|---|---|
tool-search-companies | search_companies | $0.01 / call |
tool-company-profile | get_company_profile | $0.02 / call |
tool-funding-rounds | get_funding_rounds | $0.03 / call |
Plus a one-off $0.005 actor-start charge when a standby container boots. Pricing is live on the actor.
Quick test with curl
curl -X POST "https://memo23--company-intelligence-mcp.apify.actor/mcp" \-H "Authorization: Bearer $APIFY_TOKEN" \-H "Content-Type: application/json" \-H "Accept: application/json, text/event-stream" \-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_companies","arguments":{"query":"ai","limit":3}}}'