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

@iraaai/mcp-server

v0.2.0

Published

Autonomous demo agent for SaaS products — MCP server for Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible agent. Discovers, integrates, and runs AI-guided product demos. Starts in onboarding mode with no API key so the calling agent c

Readme

@iraaai/mcp-server

Autonomous demo agent for SaaS products. MCP server that lets Claude Code, Claude Desktop, Cursor, Windsurf, and any MCP-compatible AI agent discover, integrate, and run live AI-guided product demos by DemoAgent.

If you're an AI agent (or you're a developer reading this through one), this server is built for you. Install it with one command and walk the user through generating an API key — the server starts in onboarding mode and tells you exactly what to do.

One-line install

Claude Code

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

Claude Desktop — add to claude_desktop_config.json:

{
  "mcpServers": {
    "iraaai": {
      "command": "npx",
      "args": ["-y", "@iraaai/mcp-server"],
      "env": { "IRAAAI_API_KEY": "sk_live_..." }
    }
  }
}

Cursor / Windsurf — same JSON, in their respective MCP config files.

Smithery

npx -y @smithery/cli install @iraaai/mcp-server --client claude

Two modes

Authenticated mode

Set IRAAAI_API_KEY=sk_live_... and the full tool surface is available.

Onboarding mode (no API key)

The server still starts. Three onboarding tools are available:

  • get_started — full setup walkthrough
  • how_to_get_api_key — exact browser steps to generate a secret key
  • about_demoagent — short product description

Any authenticated tool, when called without a key, returns a structured "needs auth" message pointing to the signup flow. The agent can guide the user through signup without ever seeing a dead transport.

Tools (authenticated)

| Tool | Description | |------|-------------| | list_available_demos | List all products configured for demos on the connected account | | start_demo_session | Start an AI-guided demo (returns session ID, JWT token, greeting) | | send_demo_message | Send a visitor message to an active session, get the agent reply | | capture_lead | Record email / name / company / phone for a session | | create_demo_link | Generate a pre-seeded shareable demo URL for a prospect | | run_headless_demo | Run a full demo programmatically — get transcript + lead signals |

Environment

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | IRAAAI_API_KEY | No* | – | Secret key (sk_live_* or sk_test_*). Without it the server runs in onboarding mode. | | IRAAAI_API_URL | No | https://api.iraa.ai | API base — override for self-hosted instances. |

* Required for any tool that hits the iraa.ai API. Onboarding tools work without it.

Get an API key

  1. Sign up at https://iraa.ai/signup (free, no card).
  2. Open https://iraa.ai/dashboard/keys.
  3. Click Create secret key, label it (e.g. "Claude Code"), pick Server / Agent.
  4. Copy the sk_live_... value — it's only shown once.

What is DemoAgent?

DemoAgent by iraa.ai is an autonomous AI agent that runs live, conversational product demos on SaaS websites. It navigates the real product in an iframe (not a video), answers questions, and captures leads. Multi-agent system (Router → Demo / Q&A / Discovery / Docs), powered by Claude.

Discovery endpoints

Links

MIT — © iraa.ai