Skip to content

Commit 70d5230

Browse files
release: 1.11.1
1 parent 624d5f1 commit 70d5230

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 1.11.1 (2026-03-18)
4+
5+
Full Changelog: [v1.11.0...v1.11.1](https://github.com/runloopai/api-client-ts/compare/v1.11.0...v1.11.1)
6+
7+
### Chores
8+
9+
* configure new SDK language ([64381c0](https://github.com/runloopai/api-client-ts/commit/64381c018407f0e02a3aaf110158e917efe664ac))
10+
* configure new SDK language ([c710951](https://github.com/runloopai/api-client-ts/commit/c7109516f4f2c8c860cde297831310781f4addb3))
11+
* **internal:** make generated MCP servers compatible with Cloudflare worker environments ([53f0208](https://github.com/runloopai/api-client-ts/commit/53f0208346e1ab2283efbc5c665428446db72e64))
12+
* **internal:** support x-stainless-mcp-client-envs header in MCP servers ([9b4769e](https://github.com/runloopai/api-client-ts/commit/9b4769e31c07f9729492ff87b3f3771bc5c5680a))
13+
* **internal:** support x-stainless-mcp-client-permissions headers in MCP servers ([624d5f1](https://github.com/runloopai/api-client-ts/commit/624d5f14c20094cf942e92673271e0136fba8fa8))
14+
* **internal:** tweak CI branches ([1064841](https://github.com/runloopai/api-client-ts/commit/10648417aec063456e8ecab75db62daec1f148fd))
15+
316
## 1.11.0 (2026-03-10)
417

518
Full Changelog: [v1.10.3...v1.11.0](https://github.com/runloopai/api-client-ts/compare/v1.10.3...v1.11.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runloop/api-client",
3-
"version": "1.11.0",
3+
"version": "1.11.1",
44
"description": "The official TypeScript library for the Runloop API",
55
"author": "Runloop <[email protected]>",
66
"types": "dist/sdk.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": "@runloop/api-client-mcp",
4-
"version": "1.11.0",
4+
"version": "1.11.1",
55
"description": "The official MCP Server for the Runloop API",
66
"author": {
77
"name": "Runloop",
@@ -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
"RUNLOOP_API_KEY": "${user_config.RUNLOOP_API_KEY}"
2426
}
@@ -39,5 +41,7 @@
3941
"node": ">=18.0.0"
4042
}
4143
},
42-
"keywords": ["api"]
44+
"keywords": [
45+
"api"
46+
]
4347
}

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": "@runloop/api-client-mcp",
3-
"version": "1.11.0",
3+
"version": "1.11.1",
44
"description": "The official MCP Server for the Runloop API",
55
"author": "Runloop <[email protected]>",
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
@@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
1616
new McpServer(
1717
{
1818
name: 'runloop_api_client_api',
19-
version: '1.11.0',
19+
version: '1.11.1',
2020
},
2121
{
2222
instructions: await getInstructions(stainlessApiKey),

src/version.ts

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

0 commit comments

Comments
 (0)