Skip to content

Commit 1d0c519

Browse files
release: 14.0.0
1 parent 5355ccc commit 1d0c519

7 files changed

Lines changed: 22 additions & 8 deletions

File tree

.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.2.0"
2+
".": "14.0.0"
33
}

CHANGELOG.md

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

3+
## 14.0.0 (2026-04-16)
4+
5+
Full Changelog: [v12.2.0...v14.0.0](https://github.com/muxinc/mux-node-sdk/compare/v12.2.0...v14.0.0)
6+
7+
### Chores
8+
9+
* fix mcp naming ([5355ccc](https://github.com/muxinc/mux-node-sdk/commit/5355ccc411add5c9dd5cfd8e08f691ede9e75b0f))
10+
* publish typescript generator ([0ed5b1c](https://github.com/muxinc/mux-node-sdk/commit/0ed5b1c37f2f2c49d5dd0dbd4164ca67d0e6707e))
11+
* sync repo ([1784c78](https://github.com/muxinc/mux-node-sdk/commit/1784c78531f0afa3f52dad3d27dfea9883c7581a))
12+
313
## 8.2.3 (2024-03-25)
414

515
Full Changelog: [v8.2.2...v8.2.3](https://github.com/muxinc/mux-node-sdk/compare/v8.2.2...v8.2.3)

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.2.0",
3+
"version": "14.0.0",
44
"description": "The official TypeScript library for the Mux API",
55
"author": "Mux <devex@mux.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@mux/mcp",
4-
"version": "12.2.0",
4+
"version": "14.0.0",
55
"description": "The official MCP Server for the Mux API",
66
"author": {
77
"name": "Mux",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"MUX_TOKEN_ID": "${user_config.MUX_TOKEN_ID}",
2426
"MUX_TOKEN_SECRET": "${user_config.MUX_TOKEN_SECRET}",
@@ -74,5 +76,7 @@
7476
"node": ">=18.0.0"
7577
}
7678
},
77-
"keywords": ["api"]
79+
"keywords": [
80+
"api"
81+
]
7882
}

packages/mcp-server/package.json

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

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
2828
new McpServer(
2929
{
3030
name: 'mux',
31-
version: '12.2.0',
31+
version: '14.0.0',
3232
},
3333
{
3434
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '12.2.0'; // x-release-please-version
1+
export const VERSION = '14.0.0'; // x-release-please-version

0 commit comments

Comments
 (0)