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

@bigloupe/mcp

v0.2.1

Published

BigLoupe MCP server — connect Claude to your BigLoupe org to fetch tickets & issues with full context (screenshots, console/network/error logs)

Downloads

526

Readme

@bigloupe/mcp

A Model Context Protocol server that connects Claude (Claude Code or Claude Desktop) to your BigLoupe org.

Give Claude a ticket key or issue id and it pulls the complete context — description, screenshot, and the captured session logs (console, network, errors) — so it can actually understand and help fix the bug, not just guess.

What it does

It runs as a local stdio MCP server and exposes these tools to Claude:

| Tool | What it returns | | --- | --- | | list_projects | All projects in your org (name + id). | | list_tickets | Tickets for a project (filter by status, q). | | get_ticket | A ticket with full context: description, absolute screenshot URL, and the attached session's console/network/error logs. | | list_issues | Aggregated error/issue groups for a project. | | get_issue | An issue with its last stack trace + attached session logs. | | get_session | The grouped logs for a session (console, network with headers/bodies, errors, routes, interactions, forms). | | update_ticket_status | Change a ticket's status (open, triaged, accepted, in_progress, ready_for_review, qa_validation, resolved, closed, reopened). | | comment_on_ticket | Post a comment on a ticket (attributed to the agent). | | update_issue_status | Change an issue's status (unresolved, resolved, ignored). | | comment_on_issue | Post a comment on an issue (attributed to the agent). |

Every result includes both a readable markdown summary and the raw structured data, so the model gets the actual data — not just a pointer to it.

Create a BigLoupe API token

  1. Open your BigLoupe Dashboard.
  2. Go to Settings → API Tokens.
  3. Create a new org-scoped token and copy it.

The token is sent on every request as Authorization: Bearer <token>.

Configuration

The only thing you need to set is your token:

| Env var | Required | Description | | --- | --- | --- | | BIGLOUPE_TOKEN | yes | The org-scoped API token from above. | | BIGLOUPE_API_URL | no | API base URL. Defaults to https://api.bigloupe.com. Override only for self-hosted or non-production instances (the server appends /v1). |

Add it to Claude Code

claude mcp add bigloupe \
  --env BIGLOUPE_TOKEN=blp_your_token_here \
  -- npx -y @bigloupe/mcp

Or add it manually to your .mcp.json / Claude Code config:

{
  "mcpServers": {
    "bigloupe": {
      "command": "npx",
      "args": ["-y", "@bigloupe/mcp"],
      "env": {
        "BIGLOUPE_TOKEN": "blp_your_token_here"
      }
    }
  }
}

Add it to Claude Desktop

Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json) and add:

{
  "mcpServers": {
    "bigloupe": {
      "command": "npx",
      "args": ["-y", "@bigloupe/mcp"],
      "env": {
        "BIGLOUPE_TOKEN": "blp_your_token_here"
      }
    }
  }
}

Restart Claude Desktop and the BigLoupe tools will appear.

Self-hosting? Add "BIGLOUPE_API_URL": "https://api.your-domain.com" to the env block (or pass --env BIGLOUPE_API_URL=... to claude mcp add).

Usage

Once connected, just ask Claude things like:

Look at ticket WEB-128 in BigLoupe and tell me what's going wrong.

Fetch the latest unresolved issues for the checkout project and help me fix the top one.

License

MIT