HomeOther › mux-ts

mux-ts

The official MCP Server for the Mux API

Official TypeScript Remote
★ 182 stars Last pushed 2026-09-23 License: Apache-2.0

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Remote (streamable-http)

https://mcp.mux.com Requires auth (checked 2026-09-24)

Claude Code:

claude mcp add --transport http mux-ts https://mcp.mux.com --header "Authorization: <YOUR_VALUE>"

Or add to your MCP client config:

{
  "mcpServers": {
    "mux-ts": {
      "url": "https://mcp.mux.com",
      "headers": {
        "Authorization": "<YOUR_VALUE>"
      }
    }
  }
}
  • Authorization secret — Optional basic authorization header you can include, combining your Access Token and Secret using HTTP Basic Auth. If not provided, authorization will be handled via OAuth.

Package (npm 12.8.0)

npx -y @mux/[email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "mux-ts": {
      "command": "npx",
      "args": [
        "-y",
        "@mux/[email protected]"
      ],
      "env": {
        "MUX_TOKEN_ID": "<YOUR_VALUE>",
        "MUX_TOKEN_SECRET": "<YOUR_VALUE>",
        "MUX_SIGNING_KEY": "<YOUR_VALUE>",
        "MUX_PRIVATE_KEY": "<YOUR_VALUE>"
      }
    }
  }
}
  • MUX_TOKEN_ID required secret — Your Mux access token ID
  • MUX_TOKEN_SECRET required secret — Your Mux access token secret
  • MUX_SIGNING_KEY secret — Your JWT signing key ID, for use with signed playback IDs
  • MUX_PRIVATE_KEY secret — Your JWT private key, for use with signed playback IDs

Related servers

Listed in wong2/awesome-mcp-servers (MIT)

Data from the Official MCP Registry