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

outbou-mcp

v1.1.0

Published

OutBou MCP Server - AI-powered sales prospecting automation for Claude. Enables lead scoring, prospect research, and outreach generation with Claude.

Readme

OutBou MCP Server

AI-powered sales prospecting automation for Claude. Works with Claude for macOS + Claude for Chrome for fully automated lead discovery, scoring, and outreach.

npm version

Features

  • 🚀 Automated Prospecting - Claude navigates LinkedIn/Web, finds matching leads, and helps you reach out
  • 📋 Smart Pitch Generation - Get personalized outreach messages for any prospect
  • 🎯 Lead Scoring - AI-powered scoring to find the best fit prospects based on your ICP
  • 📄 PDF Pitch Decks - Generate and share personalized PDF pitch decks

Quick Start

Install from npm

npx outbou-mcp

Or install globally:

npm install -g outbou-mcp

1. Configure the Server

You'll need an API Key from OutBou (coming soon). For now, the server runs locally with your environment.

2. Configure Claude

For Claude for macOS / Claude Desktop

Add to your Claude config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

{
  "mcpServers": {
    "outbou": {
      "command": "npx",
      "args": ["outbou-mcp"],
      "env": {
        "OUTBOU_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

For Claude Code

Add to ~/.claude.json:

{
  "projects": {
    "/path/to/your/project": {
      "mcpServers": {
        "outbou": {
          "type": "stdio",
          "command": "npx",
          "args": ["outbou-mcp"],
          "env": {
            "OUTBOU_API_KEY": "sk_live_your_key_here"
          }
        }
      }
    }
  }
}

3. Restart Claude

After saving the config, restart Claude. Type /mcp to verify the server is connected.

Available Tools

my_icp

Get your Ideal Customer Profile (ICP) definition, including target industries, roles, and company sizes.

prospect_search

Search for prospects across major platforms (LinkedIn, etc.) using your ICP to determine search terms.

score_prospect

Score a prospect against your ICP. Provide the prospect's profile or LinkedIn URL to get:

  • Match score (0-100%)
  • Recommendation (strongly_recommend, recommend, consider, skip)
  • Fit analysis (why they match/don't match)

Example: "Score this prospect for me: [paste profile text]"

generate_pitch

Generate a personalized sales pitch for a prospect.

  • Creates subject lines and email body options
  • Tailors content to the prospect's role and industry

get_pitch_pdf / download_pitch_pdf

Generate and retrieve a link to a personalized PDF pitch deck for a prospect.

my_outreach

Get a list of your current outreach campaigns and prospect statuses.

Example: "Show me my recent outreach"

update_outreach_status

Update the status of a prospect interaction.

  • Statuses: identified, contacted, meeting_booked, negotiating, closed_won, closed_lost

Example: "Update Acme Corp prospect to meeting_booked status"

Automated Prospecting (with Claude for Chrome)

The most powerful feature! Use the /auto_prospect prompt to have Claude:

  1. Prepare - Fetch your ICP and pitch templates
  2. Search - Navigate to LinkedIn and search for matching leads
  3. Evaluate - Score each prospect against your ICP
  4. Present - Show you good matches (80%+ score) and ask for approval
  5. Outreach - Draft personalized connection requests or emails
  6. Track - Log the outreach in your CRM/Dashboard

Usage

In Claude for macOS with Claude for Chrome installed:

/auto_prospect site:linkedin query:"VP of Sales" location:"Remote"

Or simply ask:

"Help me find VP of Sales at SaaS companies and draft outreach messages"

Troubleshooting

"1 MCP server failed" error

  • Check /mcp in Claude Code for details
  • Try running npx outbou-mcp directly to test

Development

git clone https://github.com/shawnmitchell/gtm_pro.git
cd gtm_pro/outbou-mcp
npm install
npm run dev   # Run with tsx (hot reload)
npm run build # Build for production
npm start     # Run production build

License

MIT © Shawn Mitchell