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

@transcend-io/mcp-server-admin

v0.3.1

Published

Transcend MCP Server — Admin tools.

Readme

@transcend-io/mcp-server-admin

Alpha — this package is under active development and has not yet been published to npm. APIs may change without notice.

Transcend MCP Server for organization administration. Provides tools for managing users, teams, API keys, and organization settings.

Requires Node.js ≥ 22.12 (see engines in package.json).

For local runs from this repository, copy secret.env.example to secret.env at the repo root (gitignored) and set your API key (see Run from the monorepo).

Install

When the package is available on npm, install the CLI globally:

npm install -g @transcend-io/mcp-server-admin

Until then, run from a checkout of this repository (see Run from the monorepo below).

Usage

# With TRANSCEND_API_KEY in the environment; from the monorepo use secret.env (see Run from the monorepo)
TRANSCEND_API_KEY=your-api-key transcend-mcp-admin

The process speaks MCP over stdio and is meant to be launched by an MCP client (for example Cursor or Claude Desktop), not used as an interactive shell.

MCP client configuration

npx runs the package’s transcend-mcp-admin binary (see bin in package.json).

{
  "mcpServers": {
    "transcend-admin": {
      "command": "npx",
      "args": ["-y", "@transcend-io/mcp-server-admin"],
      "env": {
        "TRANSCEND_API_KEY": "your-api-key"
      }
    }
  }
}

When developing in this repository, reuse the same variable names from root secret.env in the env block, or use your client’s env-file support if it has one.

Run from the monorepo

  1. Credentials — From the repository root, copy secret.env.example to secret.env and set TRANSCEND_API_KEY (and optional URL overrides).

  2. Build and runnode ./dist/cli.mjs matches the transcend-mcp-admin bin (use node because pnpm exec transcend-mcp-admin may not resolve this package’s own binary in a pnpm workspace):

# from the repository root
pnpm exec turbo run build --filter="@transcend-io/mcp-server-admin..."
set -a && source ./secret.env && set +a
pnpm -F @transcend-io/mcp-server-admin exec node ./dist/cli.mjs

Alternative: ./scripts/mcp-run.sh ./packages/mcp/mcp-server-admin/dist/cli.mjs (sources secret.env when present; run after build).

See CONTRIBUTING.md for workspace layout and pnpm --filter workflows.

Environment variables

| Variable | Required | Default | Description | | ------------------- | -------- | ------------------------------------------ | -------------------------------------------------- | | TRANSCEND_API_KEY | Yes | — | Transcend API key | | TRANSCEND_API_URL | No | https://api.transcend.io | GraphQL backend API URL (matches CLI convention) | | SOMBRA_URL | No | https://multi-tenant.sombra.transcend.io | Sombra REST API URL (matches CLI / SDK convention) |

Monorepo: keep these in root secret.env (from secret.env.example); see Run from the monorepo.

Tools

  • admin_test_connection — Test API connectivity
  • admin_get_current_user — Get the authenticated user
  • admin_get_organization — Get organization details
  • admin_get_privacy_center — Get privacy center configuration
  • admin_list_users — List organization users
  • admin_list_teams — List teams
  • admin_list_api_keys — List API keys
  • admin_create_api_key — Create a new API key

Related packages

Also available as part of the unified @transcend-io/mcp which includes all domains. See the root README for the full list.