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

popsicle-ai-mcp

v1.0.3

Published

MCP server for AI Researcher - manage studies, recordings, and analyze research data

Downloads

426

Readme

PopsicleAI MCP Server

MCP server for PopsicleAI. Enables AI assistants to create studies, manage recordings, and analyze research data.

Setup

1. Get your API Key

  1. Log in to PopsicleAI
  2. Click Settings in the header
  3. Under API Keys, click Create Key
  4. Copy the key — you won't be able to see it again

2. Add to your AI assistant

Claude Code

{
  "mcpServers": {
    "popsicle-ai": {
      "command": "npx",
      "args": ["-y", "popsicle-ai-mcp"],
      "env": {
        "AI_RESEARCHER_API_KEY": "ak_your_key_here"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "popsicle-ai": {
      "command": "npx",
      "args": ["-y", "popsicle-ai-mcp"],
      "env": {
        "AI_RESEARCHER_API_KEY": "ak_your_key_here"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "popsicle-ai": {
      "command": "npx",
      "args": ["-y", "popsicle-ai-mcp"],
      "env": {
        "AI_RESEARCHER_API_KEY": "ak_your_key_here"
      }
    }
  }
}

Tools

| Tool | Description | |------|-------------| | list_studies | List your research studies | | get_study | Get study details + recording count | | create_study | Create a new research study | | update_study | Update study configuration | | delete_study | Delete a study and its recordings | | get_participant_link | Get the shareable participant join URL | | list_recordings | List recordings for a study | | get_recording | Get full recording details including transcript | | delete_recording | Delete a specific recording | | get_study_transcripts | Get all transcripts from a study for analysis | | get_study_summary | Get high-level stats (session count, avg duration, etc.) |

Example Usage

Once connected, you can ask Claude things like:

  • "List all my research studies"
  • "Create a new usability study about our checkout flow"
  • "Show me the transcripts from study X and identify key themes"
  • "How many participants have completed the onboarding study?"
  • "Get the participant link for my latest study"

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | AI_RESEARCHER_API_KEY | Yes | — | Your API key (starts with ak_) | | AI_RESEARCHER_URL | No | https://popsicleai.app | Override API URL (for development) |