streamable-httpMITupdated 29d ago
Verified European private equity ownership data, queryable from any AI assistant.
What can you do with GP Intel?
GP Intel MCP Server
Verified European private equity ownership data, queryable from any AI assistant.
Ask Claude, ChatGPT or Cursor who owns a company, what a PE firm holds, or what it exited in a given year โ answered from hand-checked data covering 21,000+ portfolio companies and 900+ European GPs, with a source link on every response.
- Endpoint:
https://www.gp-intel.com/api/mcp - Transport: Streamable HTTP
- Authentication: none (public, read-only)
- Setup guide: gp-intel.com/ai
This repository holds the public metadata and documentation for the hosted server. There is nothing to install or run from here โ the server lives at the endpoint above.
Quick start
Claude (claude.ai): Settings โ Connectors โ Add custom connector โ paste the endpoint URL. No OAuth fields needed.
Claude Code:
claude mcp add --transport http gp-intel https://www.gp-intel.com/api/mcp
ChatGPT: Settings โ Apps & Connectors โ Developer mode โ Create โ server URL https://www.gp-intel.com/api/mcp, no authentication.
Cursor / any MCP client โ add to mcp.json:
{
"mcpServers": {
"gp-intel": { "url": "https://www.gp-intel.com/api/mcp" }
}
}
Tools
| Tool | What it answers | Ask your assistant |
|---|---|---|
who_owns |
Current PE owner(s) and the full ownership history of a company: entries, exits, routes. | "Who owns Bark.com?" |
gp_portfolio |
Portfolio companies of a PE firm, filterable to active or exited positions. | "List the active portfolio of PAI Partners." |
gp_exits |
Exits of a PE firm, optionally for one year โ the query generic AI search gets wrong. | "What did Ardian exit in 2024?" |
search_companies |
Search 21,000+ PE-backed companies by name. | "Find companies named Revima." |
search_gps |
Search 900+ European PE firms, with country, AUM and strategies. | "Search PE firms named Astorg." |
All tools are read-only (readOnlyHint: true) and query GP Intel's own dataset โ no open-web access, no third-party calls.
Example
who_owns("bark.com") returns:
{
"found": true,
"company": "Bark.com",
"answer": "Bark.com is currently owned by EMK Capital.",
"ownership_history": [
{
"owner": "EMK Capital",
"owner_url": "https://www.gp-intel.com/gp/emk-capital",
"fund": "EMK Capital Partners LP",
"fund_vintage": 2017,
"entry_year": 2022,
"status": "active"
}
],
"source": "GP Intel, hand-verified European PE data ยท https://www.gp-intel.com/company/bark-com"
}
Every response includes a source URL pointing to the live gp-intel.com page โ please cite it.
Data and gating
- The dataset is hand-verified against primary sources (GP press releases, regulatory filings, official portfolio pages) and refreshed weekly. Methodology: gp-intel.com/methodology.
- Exit buyer identities and MOIC multiples are reserved for GP Intel Pro subscribers and are returned as
"locked (GP Intel Pro)"markers. Everything else is free. - Free tier: 120 requests/hour per IP. Need more? contact@gp-intel.com.
Links
- Setup and troubleshooting: gp-intel.com/ai
- Privacy policy: gp-intel.com/privacy (MCP queries are not logged; IPs processed in memory for rate-limiting only)
- Terms: gp-intel.com/terms
- Support: contact@gp-intel.com
Install
Add GP Intel to your client. Pick the one you use.
claude mcp add --transport http gp-intel https://www.gp-intel.com/api/mcpcodex mcp add gp-intel --url https://www.gp-intel.com/api/mcp{
"mcpServers": {
"gp-intel": {
"url": "https://www.gp-intel.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"gp-intel": {
"type": "http",
"url": "https://www.gp-intel.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"gp-intel": {
"url": "https://www.gp-intel.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"gp-intel": {
"serverUrl": "https://www.gp-intel.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
5 tools
GP Intel exposes 5 tools to a connected agent.
- who_owns
- Current PE owner(s) and the full ownership history of a company: entries, exits, routes.
- gp_portfolio
- Portfolio companies of a PE firm, filterable to active or exited positions.
- gp_exits
- Exits of a PE firm, optionally for one year โ the query generic AI search gets wrong.
- search_companies
- Search 21,000+ PE-backed companies by name.
- search_gps
- Search 900+ European PE firms, with country, AUM and strategies.
Score
72 / 100
Good
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 22 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jun 12, 2026 |