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

aipi-mcp

v1.1.0

Published

MCP server for Analytical Insider AIPI — GEO AI search visibility intelligence (citation tracking across ChatGPT, Claude, Gemini, Perplexity) plus the trust primitives (probe, witnessed receipts, reputation). Phase 3 (1.1.0): aipi_register_brand_context a

Readme

aipi-mcp

npm version

MCP server for Analytical Insider AIPI — 5-pillar AI visibility intelligence delivered as native Claude tools via the Model Context Protocol.

What it does

Exposes 5 MCP tools that call the AIPI A2A API:

| Tool | Route | Description | |------|-------|-------------| | aipi_capabilities | GET /api/v2/agents/capabilities | List all 6 intelligence agents | | aipi_analyze | POST /api/v2/intelligence/analyze | Full 5-pillar analysis | | aipi_analyze_pillar | POST /api/v2/intelligence/analyze/:pillar | Single-pillar (cheaper) | | aipi_probe | POST /api/v2/agents/probe | Probe an agent URL for trust tier | | aipi_get_report | GET /api/v2/intelligence/reports/:id | Retrieve a past report |

Pillars: GEO (AI citations across ChatGPT/Claude/Gemini/Perplexity), SEO (organic search), AIO (Google AI Overviews), AEO (answer engines), SXO (search experience).


Install

1. Get your API key

Contact [email protected] for a Bearer token tied to your org.

2. Add to Claude Desktop config

Open ~/Library/Application Support/Claude/claude_desktop_config.json and add:

{
  "mcpServers": {
    "aipi": {
      "command": "npx",
      "args": ["-y", "aipi-mcp"],
      "env": {
        "AIPI_API_KEY": "YOUR_BEARER_TOKEN_HERE"
      }
    }
  }
}

3. Restart Claude Desktop

osascript -e 'quit app "Claude"' && sleep 2 && open -a Claude

4. Verify

In any Claude Desktop conversation, ask:

"List AIPI agent capabilities"

You should see the 6 intelligence agents returned.


Usage examples

Full analysis:

"Run a full AIPI analysis on timeliner.io. Brand name is Timeliner, industry is video production software."

Single pillar (GEO — AI citation tracking):

"Run a GEO analysis on timeliner.io to see how often it's cited by ChatGPT, Claude, Gemini, and Perplexity."

Competitor benchmarking:

"Run a GEO analysis on timeliner.io with competitors frame.io and air.inc included."


Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | AIPI_API_KEY | Yes | — | Bearer token (org-scoped) | | AIPI_BASE_URL | No | https://agents.analyticalinsider.ai | Override for staging/dev |


Requirements

  • Node.js >= 18
  • Claude Desktop (or any MCP-compatible client)

Publishing

cd mcp
npm publish --access public

Published as the unscoped aipi-mcp package so any MCP client can install via npx -y aipi-mcp without org authentication.