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

@experia-labs/plugin-dev-mcp

v0.1.0

Published

Model Context Protocol server that guides developers building Experia plugins. Validates manifests, lists scopes/events/slots, generates starter manifests, verifies webhook signatures.

Readme

@experia-labs/plugin-dev-mcp

A Model Context Protocol server that helps developers build plugins for the Experia platform. Plug it into Claude Code (or any MCP-aware IDE) and ask things like:

"Generate a starter manifest for an organizer-tool plugin called acme.standup."

"Validate this manifest" (paste it)

"Which scope do I need to call POST /messaging/send?"

"Why is my webhook returning 401?" (paste payload + header + secret)

The same validation rules used by the platform's publish endpoint run inside this server — if validate_manifest passes locally, your POST /developer-portal/plugins/:id/versions call will too.

Install + run via Claude Code

claude mcp add experia-plugin-dev -- npx -y @experia-labs/plugin-dev-mcp

Or, while developing locally:

cd creatoros-api/packages/plugin-dev-mcp
npm install
npm run build
claude mcp add experia-plugin-dev -- node $(pwd)/dist/cli.js

To use it inside a non-Claude MCP client, point the client at the same binary and use stdio transport.

Tools

| Tool | What it does | |------|--------------| | list_scopes | Every OAuth-style scope, what it grants, which endpoints it unlocks. | | list_events | Lifecycle + domain webhook events with example payloads. | | list_extension_slots | Where in the host UI your iframe can render. | | list_api_endpoints | Every /plugin-api/v1 endpoint and the scope it requires. | | validate_manifest | Runs the platform's publish-time validator on your manifest. | | get_starter_manifest | Scaffolds a manifest (minimal / attendee-app / organizer-tool). | | verify_webhook_signature | Verifies an X-Experia-Signature header against a payload + secret. Use to debug 401/403s. |

Resources

| URI | Contents | |-----|----------| | experia://docs/overview | Plugin lifecycle, manifests, webhooks, /plugin-api/v1. | | experia://docs/manifest | Field-by-field manifest reference. | | experia://docs/webhooks | Signature scheme, replay window, retries. |

Library use

The same helpers are exported from the package root if you want to use them in CI checks or your own tooling:

import {
  validateManifest,
  generateStarterManifest,
  verifyWebhookSignature,
} from '@experia-labs/plugin-dev-mcp';

Develop

npm install
npm run build       # compile TS
npm test            # 25+ unit tests
npm run verify      # tsc --noEmit

Static data files in src/data/ (scopes, events, slots, API endpoints) must stay in sync with their counterparts in creatoros-api/src/features/plugin-platform/. The data/registry.spec.ts tests catch obvious drift; the manifest/validate.spec.ts tests cover the validator.