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

@joinquest/mcp-integration

v0.1.2

Published

JoinQuest integration MCP server for game developer agents

Readme

JoinQuest integration MCP server

stdio MCP server for game developers integrating with JoinQuest. Exposes developer dashboard operations to Cursor, Claude, and other agents via the same GraphQL API as the portal.

Quick setup

  1. Sign in at JoinQuest and open your developer dashboard.
  2. Connect an AI assistantShow setupGenerate API key (copy once).
  3. Add MCP config (Node.js 20+, uses npx — no install step):

Cursor.cursor/mcp.json:

{
  "mcpServers": {
    "joinquest-integration": {
      "type": "stdio",
      "command": "npx",
      "args": ["--yes", "--package", "@joinquest/mcp-integration", "joinquest-integration-mcp-cursor"],
      "env": {
        "JOINQUEST_API_KEY": "lq_dev_..."
      }
    }
  }
}

Claude Code:

claude mcp add --scope project --transport stdio \
  --env JOINQUEST_API_KEY=lq_dev_... \
  joinquest-integration -- npx -y @joinquest/mcp-integration

Other stdio clients — use npx with args ["-y", "@joinquest/mcp-integration"] and the same env.

  1. Fully quit and reopen your agent client. Test: ask the agent to call joinquest_integration_list_my_games.

Why a separate Cursor bin?

Cursor injects ELECTRON_RUN_AS_NODE into MCP child processes. Use the second npx arg joinquest-integration-mcp-cursor (wrapper that unsets it). Other clients use the default bin.

Optional global install

curl -fsSL https://raw.githubusercontent.com/scruffyprodigy/playhub/main/scripts/install-joinquest-mcp.sh | sh

Environment

| Variable | Required | Description | |----------|----------|-------------| | JOINQUEST_API_KEY | Yes* | From developer dashboard → Connect AI assistant | | JOINQUEST_ISSUER_URL | No | Lobby JWT issuer / provision lobbyId | | JOINQUEST_PUBLIC_URL | No | Browser Lobby URL for example provision payloads | | JOINQUEST_SESSION | Legacy | Session cookie (prefer API key) |

Advanced (lobby contributors): JOINQUEST_API_URL=http://localhost:8080/graphql — see docs/development.md.

Publishing

Maintainers: ./scripts/publish-joinquest-mcp.sh (requires npm login + @joinquest scope). Roadmap: docs/developer-ai-setup-roadmap.md.

Client config paths

| Client | Config file | |--------|-------------| | Cursor | ~/.cursor/mcp.json or .cursor/mcp.json | | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json | | Claude Code | .mcp.json at project root |

Tools

| Tool | Purpose | |------|---------| | joinquest_integration_get_agent_playbook | Start here — end-to-end agent workflow (phases 1–8) | | joinquest_integration_get_integration_guide | Full integration guide (markdown) | | joinquest_integration_get_discovery_prompt | Agent interview script | | joinquest_integration_get_catalog_tag_taxonomy | Valid tag IDs | | joinquest_integration_list_my_games | Owner's games + visibility | | joinquest_integration_register_game | Register a new game (confirm fields with developer first) | | joinquest_integration_get_game_checks | Checklist + metadata | | joinquest_integration_run_game_checks | Run manifest / provision / JWT suite | | joinquest_integration_update_game_metadata | Save catalog copy + tags | | joinquest_integration_get_game_credentials | serviceToken + webhook secret | | joinquest_integration_get_example_provision_payload | Sample provision JSON | | joinquest_integration_request_public_release | Submit for catalog review |

Run from repo

cd mcp/joinquest-integration
npm install
JOINQUEST_API_KEY=your-key node src/index.js

Tests

npm test

Publishing (maintainers)

From repo root (requires @joinquest scope access + npm 2FA):

NPM_OTP=123456 ./scripts/publish-joinquest-mcp.sh

Use a code from your authenticator app when prompted. For GitHub Actions, add a granular access token with Publish on @joinquest/* and bypass 2FA enabled as NPM_TOKEN.