Skip to content

Commit 81eecd0

Browse files
stainless-botcjquines
authored andcommitted
release: 0.1.0-alpha.22
1 parent c3cab01 commit 81eecd0

6 files changed

Lines changed: 19 additions & 5 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-
".": "0.1.0-alpha.21"
2+
".": "0.1.0-alpha.22"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.22 (2026-02-05)
4+
5+
Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
6+
7+
### Features
8+
9+
* **mcp:** add initial server instructions ([3b2d5c8](https://github.com/stainless-api/stainless-api-typescript/commit/3b2d5c86c3c2259011a2276904c81f21b08ff606))
10+
11+
12+
### Chores
13+
14+
* **client:** restructure abort controller binding ([977850d](https://github.com/stainless-api/stainless-api-typescript/commit/977850dc7b10f2eb6cedddc128b0970450b378f1))
15+
* **internal:** refactor flag parsing for MCP servers and add debug flag ([efa7cbf](https://github.com/stainless-api/stainless-api-typescript/commit/efa7cbfce60b900ab0c8b713904ac591eedbd5ac))
16+
317
## 0.1.0-alpha.21 (2026-02-04)
418

519
Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stainless-api/sdk",
3-
"version": "0.1.0-alpha.21",
3+
"version": "0.1.0-alpha.22",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <support@stainless.com>",
66
"types": "dist/index.d.ts",

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": "@stainless-api/sdk-mcp",
3-
"version": "0.1.0-alpha.21",
3+
"version": "0.1.0-alpha.22",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <support@stainless.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
@@ -57,7 +57,7 @@ export const newMcpServer = async () =>
5757
new McpServer(
5858
{
5959
name: 'stainless_api_sdk_api',
60-
version: '0.1.0-alpha.21',
60+
version: '0.1.0-alpha.22',
6161
},
6262
{
6363
instructions: await getInstructions(),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.21'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.22'; // x-release-please-version

0 commit comments

Comments
 (0)