npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

pe-deals-mcp

v1.0.2

Published

MCP server for PE Deals — research recent UK private equity and VC deals with your AI agent.

Readme

PE Deals MCP Server

An MCP (Model Context Protocol) server that exposes the PE Deals API to AI agents. Research recent UK private equity and venture capital deals directly from Claude, Cursor, or any MCP-compatible host.

Enterprise plan required. Generate an API key from your PE Deals dashboard.


Tools

| Tool | Description | |------|-------------| | search_deals | Search deals by sector, type, date range, and value (up to 20 per call) | | get_deal | Full details for a specific deal by ID | | get_investor | Investor profile and recent deal history | | get_top_investors | Most active investors, optionally filtered by sector | | get_sector | Deal count, capital deployed, and type breakdown for a sector | | list_sectors | All available sector slugs with deal counts |


Setup

1. Prerequisites

  • Node.js 20 or later
  • A PE Deals Enterprise API key (pe_live_…)

2. Install

npm install -g pe-deals-mcp

Or run directly with npx:

PE_DEALS_API_KEY=pe_live_… npx pe-deals-mcp

3. Configure Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "pe-deals": {
      "command": "npx",
      "args": ["-y", "pe-deals-mcp"],
      "env": {
        "PE_DEALS_API_KEY": "pe_live_YOUR_KEY_HERE"
      }
    }
  }
}

Restart Claude Desktop. You should see the PE Deals tools in the tool picker.

4. Configure Cursor / other MCP hosts

{
  "mcpServers": {
    "pe-deals": {
      "command": "npx",
      "args": ["-y", "pe-deals-mcp"],
      "env": {
        "PE_DEALS_API_KEY": "pe_live_YOUR_KEY_HERE"
      }
    }
  }
}

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | PE_DEALS_API_KEY | Yes | — | Enterprise API key (pe_live_…) | | PE_DEALS_BASE_URL | No | https://pe-deals.com | Override API base URL (useful for testing) |


Rate limits

Enterprise API keys are subject to daily limits enforced server-side:

  • 1 000 requests per day
  • 500 rows per day
  • 20 rows per request (maximum limit value)

Remaining quota is shown in every tool response. A warning appears when fewer than 50 requests or rows remain.


Example prompts

  • "What are the biggest PE deals in the UK healthcare sector this year?"
  • "Show me the top 10 most active investors in technology."
  • "Who advised on the most recent fintech acquisitions?"
  • "Get the deal details for deal ID abc123."
  • "Which sectors have seen the most private equity activity in the last 3 months?"

Building from source

git clone https://github.com/moley123/pe-deals
cd pe-deals/mcp
npm install
npm run build
PE_DEALS_API_KEY=pe_live_… node dist/index.js

Security

  • The API key is read once from the environment at startup and never exposed in tool arguments or responses.
  • No pagination offset is available — the server prevents iterative bulk extraction of the full dataset.
  • All tool inputs are validated and sanitised before being forwarded to the API.