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

@cortana-ai/mcp-server

v1.0.0

Published

MCP server for Agent Kong — gives Claude access to attribution, financials, conversations, and CRM data

Readme

Agent Kong MCP Server

Give Claude (or any MCP client) full access to your Agent Kong business data — attribution, financials, conversations, and CRM.

Quick Setup

1. Build the server

cd mcp-server
npm install
npx tsc

2. Add to Claude Desktop

Open Claude Desktop → Settings → Developer → Edit Config

Add this to claude_desktop_config.json:

{
  "mcpServers": {
    "agentkong": {
      "command": "node",
      "args": ["/FULL/PATH/TO/mcp-server/dist/index.js"],
      "env": {
        "AGENTKONG_API_KEY": "sk-ak-your-api-key-here",
        "AGENTKONG_BUSINESS_ID": "your-business-id-here",
        "AGENTKONG_API_URL": "https://app.agentkong.com"
      }
    }
  }
}

Replace:

  • /FULL/PATH/TO/ with the actual path to this folder
  • sk-ak-your-api-key-here with your API key (needs all scopes)
  • your-business-id-here with your business UUID
  • URL with http://localhost:3000 for local dev

3. Restart Claude Desktop

You should see a hammer icon in the chat input — that means your tools are loaded.

Available Tools

| Tool | What it does | Example question | |---|---|---| | get_attribution | Full attribution table with drill-down | "Which ad has the best ROAS?" | | get_utms | Available UTM values for filtering | "What sources do I have?" | | get_presets | Attribution column presets | "What presets are available?" | | get_stripe_financials | Stripe payments, subs, metrics, customers | "What's my MRR?" | | get_shopify_data | Shopify orders, customers, products, analytics | "What's my top product?" | | get_whop_data | Whop payments, customers, memberships | "Show me Whop revenue" | | get_conversations | Conversation history and messages | "What are customers asking about?" | | get_call_data | Voice call logs and transcripts | "Summarize recent sales calls" | | get_contacts | CRM contacts and customer journey | "Show me this customer's journey" | | get_conversion_events | Conversion entries and LTV analysis | "Who are my highest LTV customers?" |

Example Conversations

Revenue analysis:

"What's my total revenue this month across Stripe, Shopify, and Whop?"

Ad performance:

"Show me my top 5 ad campaigns by ROAS for the last 30 days"

Churn investigation:

"Which customers churned last week? Check their recent conversations to understand why"

Customer journey:

"Show me the full journey for customer [email protected] — from first visit to purchase"

API Key Scopes

Your API key needs these scopes for full access:

  • contacts:read, conversations:read, messages:read
  • agents:read, appointments:read
  • conversions:read, tracking:read
  • tags:read, custom_fields:read
  • attribution:read, stripe:read, shopify:read, whop:read

Create a key with all scopes from: Settings → API Keys → Generate New Key