Skip to content

Commit 28c52da

Browse files
release: 13.0.0 (#615)
* feat(mcp): add mcp bundles to build script * chore(internal): codegen related update * codegen metadata * chore: ci build action * fix: coerce nullable values to undefined * chore(mcp): upload dxt as release asset * fix(mcp): fix uploading dxt release assets * docs: Remove 7 day captions gen limitation and replace with link to docs (#373) * fix(ci): set permissions for DXT publish action * chore(mcp): rename dxt to mcpb * chore(internal): gitignore .mcpb files * chore(internal): version bump * feat(mcp): add docs search tool * chore(codegen): internal codegen update * chore: do not install brew dependencies in ./scripts/bootstrap by default * docs: update docs for hevc-as-standard (#371) * feat(mcp): enable experimental docs search tool * feat(mcp): add option for including docs tools * perf: faster formatting * chore(internal): remove deprecated `compilerOptions.baseUrl` from tsconfig.json This allows sdks to be built using tsgo - see microsoft/typescript-go#474 * chore(internal): fix incremental formatting in some cases * chore(mcp): allow pointing `docs_search` tool at other URLs * chore(internal): codegen related update * chore(internal): ignore .eslintcache * fix(mcp): fix cli argument parsing logic * fix(mcp): resolve a linting issue in server code * chore: update lockfile * chore(internal): use npm pack for build uploads * chore: extract some types in mcp docs * fix(mcp): fix some response schemas used for jq filtering * fix(mcpb): pin @anthropic-ai/mcpb version * chore(internal): grammar fix (it's -> its) * chore: use structured error when code execution tool errors * chore: mcp code tool explicit error message when missing a run function * feat(mcp): enable optional code execution tool on http mcp servers * chore(mcp): add friendlier MCP code tool errors on incorrect method invocations * chore(mcp): add line numbers to code tool errors * docs(mcp): add a README button for one-click add to Cursor * chore(internal): codegen related update * docs(mcp): add a README link to add server to VS Code or Claude Code * chore(internal): codegen related update * chore(mcp): clarify http auth error * fix(mcp): use raw responses for binary content * fix(mcp): return tool execution error on jq failure * chore(mcp): upgrade jq-web * feat: Rendition Change Dimensions/Metrics (#375) * feat(mcp): add detail field to docs search tool * fix(mcp): return tool execution error on api error * chore(internal): version bump * feat(mcp): return logs on code tool errors * feat: page_url is now an advanced dimension (#376) * docs: Fix which fields can be patched in update-asset (#377) * chore: use latest @modelcontextprotocol/sdk * feat(mcp): add typescript check to code execution tool * codegen metadata * feat(mcp): handle code mode calls in the Stainless API Moves the code-mode execution to an endpoint in the Stainless API. * fix(mcp): return correct lines on typescript errors * chore(internal): codegen related update * fix(mcp): correct code tool API endpoint * chore(internal): codegen related update * fix(mcp): add client instantiation options to code tool * chore(mcp): update lockfile * docs: Clarification on Generated Subtitles behavior (#379) * fix(mcp): pass base url to code tool * chore(mcp)!: remove deprecated tool schemes This removes all tool schemes except for "code mode" tools. Specifically, this removes "all tools" and "dynamic tools" schemes. Additionally, this removes support for resource filtering, tags, jq filtering, and compatibility controls in MCP servers, as they are no longer necessary when using code mode. To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do. Specifically, you must remove all flags including things like --resources, --tags, --client, --tools=dynamic, etc from your invocation command. The only supported flags are now `--port`, `--transport`, `--socket`, and `--tools=docs` (specifically for "docs"). These are also the only options available for http servers. migration-effort: small * feat: Support language detection for generated subtitles (#380) * chore(internal): codegen related update * docs: prominently feature MCP server setup in root SDK readmes * fix(mcp): correct code tool api output types * fix(mcp): update cloudflare worker host page Updates the MCP cloudflare host to not show options that are no longer supported. This includes options for dynamic tools, client compatibility, etc, which are no longer supported. * chore: break long lines in snippets into multiline * fix(mcp): fix options parsing * release: 13.0.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent eb3c46f commit 28c52da

167 files changed

Lines changed: 1219 additions & 12491 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
"postCreateCommand": "yarn install",
1010
"customizations": {
1111
"vscode": {
12-
"extensions": [
13-
"esbenp.prettier-vscode"
14-
]
12+
"extensions": ["esbenp.prettier-vscode"]
1513
}
1614
}
1715
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
URL: https://pkg.stainless.com/s?subpackage=mcp-server
7676
AUTH: ${{ steps.github-oidc.outputs.github_token }}
7777
SHA: ${{ github.sha }}
78-
BUILD_PATH: packages/mcp-server/dist
78+
BASE_PATH: packages/mcp-server
7979
run: ./scripts/utils/upload-artifact.sh
8080
test:
8181
timeout-minutes: 10

.github/workflows/publish-npm.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
publish:
1717
name: publish
1818
runs-on: ubuntu-latest
19+
permissions:
20+
contents: write
1921

2022
steps:
2123
- uses: actions/checkout@v4
@@ -40,10 +42,9 @@ jobs:
4042
env:
4143
NPM_TOKEN: ${{ secrets.MUX_NPM_TOKEN || secrets.NPM_TOKEN }}
4244

43-
- name: Upload DXT file to release
44-
if: github.event_name == 'release'
45+
- name: Upload MCP Server DXT GitHub release asset
4546
run: |
4647
gh release upload ${{ github.event.release.tag_name }} \
47-
packages/mcp-server/dxt/mux.dxt#mux-mcp.dxt
48+
packages/mcp-server/mux.dxt
4849
env:
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ dist
77
dist-deno
88
/*.tgz
99
.idea/
10+
.eslintcache
11+
dist-bundle
12+
*.mcpb
1013
.DS_Store
11-
12-
packages/mcp-server/dxt/dist
13-
packages/mcp-server/dxt/package.json
14-
packages/mcp-server/dxt/mux.dxt
15-
packages/mcp-server/dxt/LICENSE
1614
.vercel

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "12.8.1"
2+
".": "13.0.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 108
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-4cb6473403b67203df9f418cda5207a4359e13b5a30340303c6f5f8d4584a970.yml
3-
openapi_spec_hash: 49e34594cb30dfd765a3c5a618bae32c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mux%2Fmux-83dc80cce4d6808fdcecdc7249aebbe4c586415c77fb47e2481577691fe415a0.yml
3+
openapi_spec_hash: 5cb50a3f7302a22aa79c79ae08313751
44
config_hash: 9d64df8ecbee364853546b6388b697ad

CHANGELOG.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,102 @@
11
# Changelog
22

3+
## 13.0.0 (2026-01-06)
4+
5+
Full Changelog: [v12.8.1...v13.0.0](https://github.com/muxinc/mux-node-sdk/compare/v12.8.1...v13.0.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **mcp:** remove deprecated tool schemes
10+
11+
### Features
12+
13+
* **mcp:** add detail field to docs search tool ([144248d](https://github.com/muxinc/mux-node-sdk/commit/144248d1b99d935b7fac61c31ab722e5f70f37f9))
14+
* **mcp:** add docs search tool ([303bf2d](https://github.com/muxinc/mux-node-sdk/commit/303bf2dcbca034dfbc4c88cd86c7e1cda4306d06))
15+
* **mcp:** add mcp bundles to build script ([55f7e82](https://github.com/muxinc/mux-node-sdk/commit/55f7e82ee70984b595cec6f8b795bdd375881d3c))
16+
* **mcp:** add option for including docs tools ([af5c82e](https://github.com/muxinc/mux-node-sdk/commit/af5c82ec0215471a3e4bc408417cb34bef62f152))
17+
* **mcp:** add typescript check to code execution tool ([dae1e4a](https://github.com/muxinc/mux-node-sdk/commit/dae1e4a52690f2ee9cd89632fa19bcf27473df2f))
18+
* **mcp:** enable experimental docs search tool ([f8091f8](https://github.com/muxinc/mux-node-sdk/commit/f8091f812c26abfe169da36f1628f57871092567))
19+
* **mcp:** enable optional code execution tool on http mcp servers ([1e1aaf3](https://github.com/muxinc/mux-node-sdk/commit/1e1aaf33e53884a76f7dd4a021274453e728926f))
20+
* **mcp:** handle code mode calls in the Stainless API ([e0bd156](https://github.com/muxinc/mux-node-sdk/commit/e0bd1565fc95be388fd837baee4f2fd8ed56cb17))
21+
* **mcp:** return logs on code tool errors ([77c0a59](https://github.com/muxinc/mux-node-sdk/commit/77c0a5962a7d88c5f9c11f42a3dfe59f9f05ce4e))
22+
* page_url is now an advanced dimension ([#376](https://github.com/muxinc/mux-node-sdk/issues/376)) ([1ef7ae2](https://github.com/muxinc/mux-node-sdk/commit/1ef7ae28cc0f1d0aeddb64df28d5b1eee73c1dd0))
23+
* Rendition Change Dimensions/Metrics ([#375](https://github.com/muxinc/mux-node-sdk/issues/375)) ([00d4537](https://github.com/muxinc/mux-node-sdk/commit/00d4537d8e12bda9c6710ae37fe18609ae03988d))
24+
* Support language detection for generated subtitles ([#380](https://github.com/muxinc/mux-node-sdk/issues/380)) ([ca79abc](https://github.com/muxinc/mux-node-sdk/commit/ca79abc308df91bb427ee04bb548ebb176e2cbe1))
25+
26+
27+
### Bug Fixes
28+
29+
* **ci:** set permissions for DXT publish action ([04e7d73](https://github.com/muxinc/mux-node-sdk/commit/04e7d7354236dcd71b0fcd606cb0edcf36160e3c))
30+
* coerce nullable values to undefined ([90b915b](https://github.com/muxinc/mux-node-sdk/commit/90b915b243e766c2127c18c877acf96e2297de0d))
31+
* **mcp:** add client instantiation options to code tool ([2a28cbb](https://github.com/muxinc/mux-node-sdk/commit/2a28cbb3b85b3e397053854ecd30b5fb2e8e8ad0))
32+
* **mcpb:** pin @anthropic-ai/mcpb version ([ea4015b](https://github.com/muxinc/mux-node-sdk/commit/ea4015bc184c2cc3417475d2afc67092f450e050))
33+
* **mcp:** correct code tool API endpoint ([7f4ab44](https://github.com/muxinc/mux-node-sdk/commit/7f4ab441de5edfcde824aafc565b963c8481411e))
34+
* **mcp:** correct code tool api output types ([470b862](https://github.com/muxinc/mux-node-sdk/commit/470b862ea3e1e3fb985489c704aa02f570a6bbfe))
35+
* **mcp:** fix cli argument parsing logic ([4033ba5](https://github.com/muxinc/mux-node-sdk/commit/4033ba5340d7bb0ccbd8d3795e18bc9fad93b7e6))
36+
* **mcp:** fix options parsing ([b04c732](https://github.com/muxinc/mux-node-sdk/commit/b04c732b17369088fc69be4a493864144a77bfeb))
37+
* **mcp:** fix some response schemas used for jq filtering ([c6874d5](https://github.com/muxinc/mux-node-sdk/commit/c6874d50da6534b32b75d1df712980b98032a249))
38+
* **mcp:** fix uploading dxt release assets ([cca7f9d](https://github.com/muxinc/mux-node-sdk/commit/cca7f9d0280941ea2d5a4a2ca4f53c844ebb168a))
39+
* **mcp:** pass base url to code tool ([1003ee4](https://github.com/muxinc/mux-node-sdk/commit/1003ee4e726d6d0e6d1c80b53762ef096bb3d002))
40+
* **mcp:** resolve a linting issue in server code ([e59a137](https://github.com/muxinc/mux-node-sdk/commit/e59a1370cc008fbfba54ed37092d33135efb0222))
41+
* **mcp:** return correct lines on typescript errors ([cd783ca](https://github.com/muxinc/mux-node-sdk/commit/cd783caf13160d9b4ee81258cc207d00ea121029))
42+
* **mcp:** return tool execution error on api error ([d7a5cc0](https://github.com/muxinc/mux-node-sdk/commit/d7a5cc02695f273cf0f6d47b6739661f2982b2ff))
43+
* **mcp:** return tool execution error on jq failure ([b3dd62a](https://github.com/muxinc/mux-node-sdk/commit/b3dd62a93e40ff916fd416c10f49cbb5fe0b054c))
44+
* **mcp:** update cloudflare worker host page ([1f59940](https://github.com/muxinc/mux-node-sdk/commit/1f5994042c25ee50f3a8fd9dc0d1e4e93eb434b1))
45+
* **mcp:** use raw responses for binary content ([52ecb08](https://github.com/muxinc/mux-node-sdk/commit/52ecb08be436adbc626a2fb79b531445925c9699))
46+
47+
48+
### Performance Improvements
49+
50+
* faster formatting ([c92853e](https://github.com/muxinc/mux-node-sdk/commit/c92853e2763f232b9c88dbc4cce6e883d1034724))
51+
52+
53+
### Chores
54+
55+
* break long lines in snippets into multiline ([6417def](https://github.com/muxinc/mux-node-sdk/commit/6417def5d01bf2fb4070674f0de94f77ca82ad01))
56+
* ci build action ([427ccf3](https://github.com/muxinc/mux-node-sdk/commit/427ccf381c2212146ae4f6f1ab264b8a6fa2d401))
57+
* **codegen:** internal codegen update ([ea732c9](https://github.com/muxinc/mux-node-sdk/commit/ea732c9f165a7df6170cf01ad8e7069a6beef150))
58+
* do not install brew dependencies in ./scripts/bootstrap by default ([f4505bc](https://github.com/muxinc/mux-node-sdk/commit/f4505bc9860e1b7e935f43b11d0a357f4a473467))
59+
* extract some types in mcp docs ([e51a4ca](https://github.com/muxinc/mux-node-sdk/commit/e51a4ca44b1407f9930bf1c55e7dc54a124bf635))
60+
* **internal:** codegen related update ([aed512c](https://github.com/muxinc/mux-node-sdk/commit/aed512cf29a7d59986a90d8bb2010d12ccfc6454))
61+
* **internal:** codegen related update ([bdaf76e](https://github.com/muxinc/mux-node-sdk/commit/bdaf76e6843c164489ea661af9ced2cdb7b92ec3))
62+
* **internal:** codegen related update ([77d0d13](https://github.com/muxinc/mux-node-sdk/commit/77d0d136c8745d2259a47014873cbfcc8b93ec63))
63+
* **internal:** codegen related update ([0159371](https://github.com/muxinc/mux-node-sdk/commit/0159371d68837c0398e81c2dbabdf7722b797d7c))
64+
* **internal:** codegen related update ([1086856](https://github.com/muxinc/mux-node-sdk/commit/1086856bcd94b992afb4516495911c873c37f146))
65+
* **internal:** codegen related update ([126b23a](https://github.com/muxinc/mux-node-sdk/commit/126b23a7b3999dbf935139a36c85324d89c028f7))
66+
* **internal:** codegen related update ([ece03e1](https://github.com/muxinc/mux-node-sdk/commit/ece03e1d27637b6c4b498121812e1fdd1f82ee6f))
67+
* **internal:** fix incremental formatting in some cases ([44dfd8d](https://github.com/muxinc/mux-node-sdk/commit/44dfd8d23354752ae22f0beb135b45c2cdd0a19a))
68+
* **internal:** gitignore .mcpb files ([08bb272](https://github.com/muxinc/mux-node-sdk/commit/08bb27239d2bd72a2d0c1ce6e699b5f48348d678))
69+
* **internal:** grammar fix (it's -&gt; its) ([9cb5c52](https://github.com/muxinc/mux-node-sdk/commit/9cb5c52054c2c9e3162373168fc3656e4777c2ba))
70+
* **internal:** ignore .eslintcache ([bee39de](https://github.com/muxinc/mux-node-sdk/commit/bee39dec7ed68010e340313408d40d3771507d54))
71+
* **internal:** remove deprecated `compilerOptions.baseUrl` from tsconfig.json ([a5e75a8](https://github.com/muxinc/mux-node-sdk/commit/a5e75a8a7ccc83d7a46d57b95321b07a92ddf549))
72+
* **internal:** use npm pack for build uploads ([e51c1c5](https://github.com/muxinc/mux-node-sdk/commit/e51c1c571794e610671ebe8d8c07eb0cba88b761))
73+
* **internal:** version bump ([58594ad](https://github.com/muxinc/mux-node-sdk/commit/58594ad6aa50cee1b6d57eb02d53a93556ac4073))
74+
* **internal:** version bump ([2f39518](https://github.com/muxinc/mux-node-sdk/commit/2f39518c48fa2a7f35543f6a031f3f01cd2222f9))
75+
* mcp code tool explicit error message when missing a run function ([ac3e901](https://github.com/muxinc/mux-node-sdk/commit/ac3e90183f13fc9574095d8a435d5e360ba0b3d4))
76+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([1bf1418](https://github.com/muxinc/mux-node-sdk/commit/1bf1418b5c4fc952c3e12bd6403d4ea62636a947))
77+
* **mcp:** add line numbers to code tool errors ([7f88a02](https://github.com/muxinc/mux-node-sdk/commit/7f88a02934a3a7db5c6d489a039f39f572df487d))
78+
* **mcp:** allow pointing `docs_search` tool at other URLs ([1714aff](https://github.com/muxinc/mux-node-sdk/commit/1714aff71af3d9f3f452bf587e47512e05c8a62e))
79+
* **mcp:** clarify http auth error ([8dbb066](https://github.com/muxinc/mux-node-sdk/commit/8dbb066d1773e1461249c11016dd4a8638739075))
80+
* **mcp:** remove deprecated tool schemes ([fecab51](https://github.com/muxinc/mux-node-sdk/commit/fecab51a12e2918059cfa009d5d7fba5e364bd78))
81+
* **mcp:** rename dxt to mcpb ([65504cc](https://github.com/muxinc/mux-node-sdk/commit/65504cc1ddf197de92d3fa12156b831446ff5545))
82+
* **mcp:** update lockfile ([1589f86](https://github.com/muxinc/mux-node-sdk/commit/1589f860657ee7925b8b87d3bd98fc69ada13951))
83+
* **mcp:** upgrade jq-web ([23a249b](https://github.com/muxinc/mux-node-sdk/commit/23a249b3ad8c3e6a0246d2161dc59c7944290214))
84+
* **mcp:** upload dxt as release asset ([c7619b8](https://github.com/muxinc/mux-node-sdk/commit/c7619b8f5d43270cc25b9638f378353184794014))
85+
* update lockfile ([3ac5109](https://github.com/muxinc/mux-node-sdk/commit/3ac510980f290ad31c90b5da2471fadecca71a70))
86+
* use latest @modelcontextprotocol/sdk ([be3814d](https://github.com/muxinc/mux-node-sdk/commit/be3814dc3cefea92af49ff12a40da9858ac5709d))
87+
* use structured error when code execution tool errors ([2aef926](https://github.com/muxinc/mux-node-sdk/commit/2aef926deca0a16fa8432bd68025428ccece221e))
88+
89+
90+
### Documentation
91+
92+
* Clarification on Generated Subtitles behavior ([#379](https://github.com/muxinc/mux-node-sdk/issues/379)) ([44e0a74](https://github.com/muxinc/mux-node-sdk/commit/44e0a74f6b2861698ae05a289d70160e3b977158))
93+
* Fix which fields can be patched in update-asset ([#377](https://github.com/muxinc/mux-node-sdk/issues/377)) ([71cd3ea](https://github.com/muxinc/mux-node-sdk/commit/71cd3ea7ae76357acdba2b5d4f5c69280498a54d))
94+
* **mcp:** add a README button for one-click add to Cursor ([bbf88a9](https://github.com/muxinc/mux-node-sdk/commit/bbf88a983bd2f8ff0e4d3c369100e60b61f4592f))
95+
* **mcp:** add a README link to add server to VS Code or Claude Code ([380fb99](https://github.com/muxinc/mux-node-sdk/commit/380fb998d65c7a6fe8acaa59ab29a4a41ea4e531))
96+
* prominently feature MCP server setup in root SDK readmes ([c703a81](https://github.com/muxinc/mux-node-sdk/commit/c703a8173848cb2b54f702617537563acb4fc74f))
97+
* Remove 7 day captions gen limitation and replace with link to docs ([#373](https://github.com/muxinc/mux-node-sdk/issues/373)) ([7769e44](https://github.com/muxinc/mux-node-sdk/commit/7769e44c97ca9c0f1ea751c4958c756d02fa1826))
98+
* update docs for hevc-as-standard ([#371](https://github.com/muxinc/mux-node-sdk/issues/371)) ([e692395](https://github.com/muxinc/mux-node-sdk/commit/e692395a5e8bbf3923cec7d1f411986626390264))
99+
3100
## 12.8.1 (2025-12-01)
4101

5102
Full Changelog: [v12.8.0...v12.8.1](https://github.com/muxinc/mux-node-sdk/compare/v12.8.0...v12.8.1)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2025 Mux
189+
Copyright 2026 Mux
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ This library provides convenient access to the Mux REST API from server-side Typ
99
1010
The REST API documentation can be found on [docs.mux.com](https://docs.mux.com). The full API of this library can be found in [api.md](api.md).
1111

12+
## MCP Server
13+
14+
Use the Mux MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
15+
16+
[![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=%40mux%2Fmcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBtdXgvbWNwIl19)
17+
[![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40mux%2Fmcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40mux%2Fmcp%22%5D%7D)
18+
19+
> Note: You may need to set environment variables in your MCP client.
20+
1221
## Installation
1322

1423
```sh

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mux/mux-node",
3-
"version": "12.8.1",
3+
"version": "13.0.0",
44
"description": "The official TypeScript library for the Mux API",
55
"author": "Mux <devex@mux.com>",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)