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

@capivv/mcp-server

v0.1.3

Published

MCP server for managing Capivv subscription platform via AI assistants

Readme

@capivv/mcp-server

MCP (Model Context Protocol) server for the Capivv subscription management platform. Enables AI assistants like Claude, Cursor, and other MCP clients to manage your in-app subscription configuration.

Installation

# Run directly with npx (recommended)
npx @capivv/mcp-server

# Or install globally
npm install -g @capivv/mcp-server
capivv-mcp

Configuration

The server requires an API key from your Capivv dashboard.

| Environment Variable | Required | Description | |---------------------|----------|-------------| | CAPIVV_API_KEY | Yes | API key from Settings > Developer > API Keys | | CAPIVV_API_URL | No | API base URL (default: https://api.capivv.com) | | CAPIVV_ORG_ID | No | Organization ID for multi-org accounts |

Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "capivv": {
      "command": "npx",
      "args": ["-y", "@capivv/mcp-server"],
      "env": {
        "CAPIVV_API_KEY": "your-api-key-here"
      }
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Claude Code

claude mcp add capivv -- npx -y @capivv/mcp-server

Set the API key in your environment or .env file:

export CAPIVV_API_KEY="your-api-key-here"

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "capivv": {
      "command": "npx",
      "args": ["-y", "@capivv/mcp-server"],
      "env": {
        "CAPIVV_API_KEY": "your-api-key-here"
      }
    }
  }
}

Generic MCP Client

The server uses stdio transport. Start it with:

CAPIVV_API_KEY=your-api-key npx @capivv/mcp-server

Available Tools

| Tool | Description | |------|-------------| | capivv_status | Get setup progress, resource counts, and key metrics | | capivv_list_apps | List all apps with platform and bundle ID | | capivv_list_products | List products with store IDs and entitlements (optional app_id filter) | | capivv_import_products | Preview store product import from App Store Connect / Google Play | | capivv_list_offerings | List offerings with packages and products | | capivv_create_offering | Create a new offering with packages | | capivv_list_rules | List YAML business rules with status and priority | | capivv_apply_rule | Validate and apply a YAML rule configuration | | capivv_list_experiments | List A/B experiments with results and confidence | | capivv_get_analytics | Get MRR, ARR, churn rate, ARPU, and period comparison |

Available Resources

| URI | Description | |-----|-------------| | capivv://status | Current platform status as JSON | | capivv://rules/{ruleId} | Individual rule YAML content | | capivv://docs/concepts | Glossary of subscription platform concepts |

Troubleshooting

"CAPIVV_API_KEY is required" Set the CAPIVV_API_KEY environment variable. Get your API key from the Capivv dashboard under Settings > Developer > API Keys.

Tools not appearing in Claude Desktop Restart Claude Desktop after updating claude_desktop_config.json. Check the MCP logs for errors.

Connection errors Verify your API key is valid and your network can reach the Capivv API. If using a custom CAPIVV_API_URL, ensure the URL is correct.

License

MIT