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

@bigstrider/transcodes-mcp-server

v1.4.2

Published

stdio MCP server that proxies HTTP requests to Transcodes API with a member MCP JWT (x-transcodes-token header)

Downloads

1,186

Readme

@bigstrider/transcodes-mcp-server

An MCP server that lets AI assistants — Cursor, Claude Desktop, etc. — interact with your Transcodes account through natural language.

Authentication uses a single member MCP JWT (TRANSCODES_TOKEN). The token carries organizationId, projectId, memberId, and must use audience transcodes-mcp. The server sends the token to the Transcodes API as the x-transcodes-token header.


Node.js version

This package requires Node.js 20+ (same as @modelcontextprotocol/sdk). MCP clients often invoke the first node on your PATH. If you use nvm and an old default (e.g. 16) is first, you will see cryptic @hono/node-server / Request errors — fix by pointing command at a Node 20+ binary or adjusting your default Node.


Setup

Cursor~/.cursor/mcp.json
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "transcodes": {
      "command": "npx",
      "args": ["@bigstrider/transcodes-mcp-server"],
      "env": {
        "TRANSCODES_TOKEN": "<member MCP JWT from the Transcodes console>"
      }
    }
  }
}

Only TRANSCODES_TOKEN is required. The server points at the Transcodes production API and exposes the full tool catalog by default — see src/constants.ts for the baked-in DEFAULT_BACKEND_URL and DEFAULT_ENDPOINT_MAP. The tool catalog is a library-internal contract and is not configurable at runtime. To point at a local backend in dev, override TRANSCODES_BACKEND_URL:

"env": {
  "TRANSCODES_TOKEN": "<member MCP JWT>",
  "TRANSCODES_BACKEND_URL": "http://localhost:3500"
}

Token claims (expected shape)

The JWT payload should include at least:

  • iss — e.g. https://api.transcodes.com
  • oid, pid, mid — organization / project / member ids (the parser only reads these short claim names)
  • aud — must include transcodes-mcp
  • jti, iat, exp — standard JWT fields (exp must be in the future when the server starts)

Upgrading to v1.4.0

No config changes required for most users. If your MCP client config sets only TRANSCODES_TOKEN (the typical v1.3.0 setup), v1.4.0 behaves identically by default — the production backend URL and tool catalog moved from build-time CI substitution into src/constants.ts as explicit constants.

What changed:

  • TRANSCODES_BACKEND_URL runtime override now actually works. In v1.3.0, setting it in your client config was silently ignored because the identifier had been replaced with a literal at build time. v1.4.0 removes the substitution step, so the override takes effect. Useful for pointing at a local backend in dev (TRANSCODES_BACKEND_URL=http://localhost:3500).
  • TRANSCODES_BACKEND_ENDPOINTS env is gone. The tool catalog is now a library-internal constant (DEFAULT_ENDPOINT_MAP in src/constants.ts) and is no longer configurable via env. If you were setting that var in v1.3.0 it was already being silently overridden by the baked-in default, so removing it is a no-op for existing behavior.
  • TRANSCODES_TOKEN stays required. Missing token still throws at startup.

Coming from v1.2.1 or older?

v1.2.1 used TRANSCODES_API_KEY + TRANSCODES_PROJECT_ID, which were replaced by a member MCP JWT in v1.3.0 (before this release). If you skipped that upgrade:

  1. Issue a member MCP JWT (Transcodes console → Members → Generate MCP token).
  2. Replace the two old env vars with TRANSCODES_TOKEN (the JWT carries organizationId / projectId / memberId as claims, so no separate project id env is needed).
  3. Restart your MCP client.

What the AI can do

| Category | | | ----------------- | ------------------------------------------------------------ | | Projects | Fetch project details, domain URL, toolkit config | | Members | Look up, create, update members; paginated listing | | Auth devices | List passkeys, authenticators, TOTP devices per member | | Roles & RBAC | Create/update roles, set permissions, simulate access checks | | Audit logs | Query security logs with date and tag filters | | Membership | List plans and limits, generate Stripe checkout link | | Integration guide | Fetch the official Transcodes guide for code generation | | Generic HTTP | Call any /v1/... endpoint directly |

Actions that must happen in the browser (passkey/TOTP enroll or delete, JWK backup) return a direct console link: {your-domain}?tc_mode=console.


Requirements

  • Node.js ≥ 20

License

MIT