Build with PrivCo Data
Integrate comprehensive private company intelligence directly into your applications, workflows, and systems with our powerful API — or bring PrivCo straight into Claude, ChatGPT, and Microsoft Copilot.
Use PrivCo Inside Your AI Assistant
The PrivCo MCP connector brings company search, profiles, financials, funding, M&A, and contacts into Claude, ChatGPT, Microsoft Copilot, and any MCP-compatible client
MCP server URL
https://mcp.privco.com/mcpClaude.ai & Claude Desktop
Settings → Connectors → Add custom connector. Enter the server URL, leave Client ID and Secret blank, then sign in with your PrivCo account.
Claude Code
Run `claude mcp add --transport http privco-data-mcp https://mcp.privco.com/mcp`, then `/mcp` to sign in.
ChatGPT
Enable Developer mode (Settings → Apps & Connectors → Advanced), create a connector with the same URL, and sign in.
Microsoft Copilot (Copilot Studio)
In Copilot Studio, add a tool → Model Context Protocol → enter the server URL, choose OAuth 2.0 Dynamic discovery, and sign in with your PrivCo account. Then add the tool to your agent.
Developers & automation
Prefer to run it locally with an API key? `npm install -g privco-data-mcp` — the same 17 tools over stdio.
You: Who are the fastest-growing fintech companies in New York, and how are they funded?
Claude → PrivCo connector:
company_search {industry, state, growth}
profile {top candidates}
vc_deals {rounds + valuations}
Answer: a ranked list with revenue, growth, latest rounds, and investors — sourced from PrivCo.
17 tools across the full research workflow: entity resolution, discovery search, enrichment, and contact reveal. Requires a PrivCo account with API access enabled.
Using Microsoft Copilot? The MCP connector above is one way to reach PrivCo data — a developer-friendly path that works in Copilot Studio and any MCP-compatible client. For PrivCo built natively into Microsoft 365, see our Copilot Data Connector. The two are complementary integration methods, not replacements for each other.
Your data, your account. The connector signs you in with OAuth — no API key to copy around. Queries are metered to your PrivCo account's plan and quotas, and your conversations aren't used for anything beyond serving your request. See our Privacy Policy. Questions or API access: support@privco.com.
Powerful Features for Developers
Everything you need to build sophisticated applications with private company data
Complete Database Access
Access our entire database of 2M+ private companies with detailed financial data, funding histories, and market intelligence.
Real-Time Data
Get instant access to the latest company updates, funding rounds, acquisitions, and financial performance metrics.
RESTful API
Simple, well-documented REST API with JSON responses. Easy to integrate into your existing workflows and applications.
Enterprise Security
Encrypted end-to-end in transit, with API-key authentication for the REST API and OAuth 2.1 sign-in on the MCP connector.
Custom Rate Limits
Flexible rate limits tailored to your use case. Scale up as your business grows without interruption.
AI-Ready
First-class MCP support: the same data, exposed as 17 tools for Claude, ChatGPT, Microsoft Copilot, and other AI assistants — no code required.
API Use Cases
See how leading organizations use the PrivCo API
- Identify acquisition targets matching specific criteria
- Track portfolio companies and competitors
- Monitor funding activity in target sectors
- Automated KYC and background checks
- Ownership structure verification
- Financial health monitoring
- Industry trend analysis and reporting
- Competitive landscape monitoring
- Market sizing and segmentation
- Lead scoring and prioritization
- Account-based marketing campaigns
- Territory planning and analysis
API Endpoints
A preview of our RESTful v3 endpoints
/matchResolve a company or investor name/website to PrivCo profile IDs
/company_searchScreen companies by industry, keyword, location, financials, and ownership
/profile/{profileType}/{profileId}Get the full company or investor profile
/financials/company/{profileId}Multi-year revenue, EBITDA, valuation, and employee history
/vc_deals/company/{profileId}Funding rounds with per-round valuations and investor lists
/ma_deals/company/{profileId}M&A transaction history
…and 11 more covering people & contact search, fuzzy identification, funding & deal search, and industry taxonomies. The full reference is provided with your API onboarding.
Simple Integration
Get started in minutes with our straightforward API
# Resolve a company… curl -H "x-api-key: $PRIVCO_API_KEY" \ "https://api.privco.com/v3/match?name=Stripe" # …then pull its full profile curl -H "x-api-key: $PRIVCO_API_KEY" \ "https://api.privco.com/v3/profile/company/44612" # Prefer an AI assistant? One command in Claude Code: claude mcp add --transport http \ privco-data-mcp https://mcp.privco.com/mcp
Any HTTP client
JSON over HTTPS — no SDK requiredAI assistants
MCP connector: mcp.privco.com/mcpLocal MCP server
npm install -g privco-data-mcp