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

@traicelabs/mcp

v0.4.0

Published

Traice MCP server — stdio for hosts; Streamable HTTP OAuth resource server for Traice-hosted (not customer self-host)

Readme

@traicelabs/mcp

MCP server for Traice — use Traice personas from MCP hosts without calling the REST API yourself.

Supported today:

  • stdio — local process (npx @traicelabs/mcp) with an application API key (Cursor, Claude Desktop, and similar)
  • Traice-hosted Streamable HTTP — per-application connector URL with OAuth (Claude, ChatGPT, Cursor remote, and other MCP hosts)

Customer self-host of the HTTP MCP server is not offered.

Which host uses which path (and when to leave OAuth client fields blank) is in docs/QUICKSTART.md.

The package is a thin MCP wrapper over the Traice partner API. Persona depth stays on the Traice platform. For stdio, you supply an application API key and a requester persona. For hosted HTTP, end users sign in with OAuth — no trc_* key in the connector.

Install (2 minutes) — stdio

  1. Create an application API key in the Developer Portal.
  2. Copy a host config from examples/ (or paste below).
  3. Replace TRAICE_API_KEY and TRAICE_REQUESTER_PERSONA_ID.
  4. Reload MCP in your host, then try: ping_traicelist_personasconverse.

Cursor — project .cursor/mcp.json (or MCP settings):

{
  "mcpServers": {
    "traice": {
      "command": "npx",
      "args": ["-y", "@traicelabs/mcp"],
      "env": {
        "TRAICE_API_KEY": "trc_test_…",
        "TRAICE_REQUESTER_PERSONA_ID": "persona-uuid-…"
      }
    }
  }
}

Claude Desktop — same block in claude_desktop_config.json (Settings → Developer → Edit Config). Ready-made files: examples/cursor.mcp.json, examples/claude_desktop_config.json.

Hosted connector: copy the MCP URL from the application page in the Developer Portal. Full walkthrough: docs/QUICKSTART.md · portal /docs/mcp-quickstart.

Requirements

  • Node.js 24+ (for npx / stdio)
  • Traice application API key (trc_test_* / trc_live_*) — stdio only
  • A requester persona UUID in that application’s organization — stdio only

Environment

| Variable | Required | Default | Description | |---|---|---|---| | TRAICE_API_KEY | Yes (stdio) | — | Application API key | | TRAICE_REQUESTER_PERSONA_ID | Yes (stdio discovery / chat) | — | Initiating persona for visibility and converse — deployment config, not a tool argument | | PINNED_PERSONA_ID | No | — | Lock discovery and converse to one persona | | TRAICE_CONVERSATION_PERSISTENCE | No | on | After MCP restart, resume the latest thread with the target (off = in-process only) |

The API key is never written to tool schemas, tool results, or intentional logs.

HTTP listen / OAuth env vars exist for Traice-internal Streamable HTTP development only — see CONTRIBUTING.md. They are not a supported customer self-host surface.

Tools

| Tool | Purpose | |---|---| | ping_traice | Connectivity check + minimal org summary | | list_personas | Personas visible to the requester (id, name, label, visibility_scope) | | converse | Message a persona; returns { reply, target }. Optional start_fresh |

  • Conversation IDs stay inside the wrapper — the host never passes them.
  • Successive converse calls continue the same thread; after restart, resume is on by default.
  • Present the persona reply as another party’s message — do not restyle it as the host assistant.
  • If the platform message limit is hit, retry with start_fresh: true.

Docs

| Doc | Audience | |---|---| | docs/QUICKSTART.md | Integrators — stdio, hosted hosts, tools, limits | | Portal /docs/mcp-quickstart | Same guide in the Developer Portal | | CONTRIBUTING.md | Package contributors — local run, tests, internal HTTP chassis |

License

MIT — see LICENSE. Traice-hosted MCP (OAuth) is a Traice-managed product track, not customer self-host of this package’s HTTP entry.