Skip to content

Commit 11b0fed

Browse files
committed
release: 0.1.0-alpha.20
1 parent f3ac102 commit 11b0fed

6 files changed

Lines changed: 38 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.19"
2+
".": "0.1.0-alpha.20"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.20 (2026-01-05)
4+
5+
Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **mcp:** remove deprecated tool schemes
10+
* **mcp:** **Migration:** 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.
11+
12+
### Features
13+
14+
* add openapi target ([1c07f4a](https://github.com/stainless-api/stainless-api-typescript/commit/1c07f4a27ff101b648b41178c89de46332e47f48))
15+
* **ci:** Add organization-level setting for AI commit messages ([ea9213e](https://github.com/stainless-api/stainless-api-typescript/commit/ea9213eaea7216e096c9fbcb8286a7024fbebb32))
16+
* **sql:** initial commit ([54595ed](https://github.com/stainless-api/stainless-api-typescript/commit/54595ed3bf6ec49e4a49fb59125eab12a93f2d08))
17+
18+
19+
### Bug Fixes
20+
21+
* dedent dockerfile ([c273cf7](https://github.com/stainless-api/stainless-api-typescript/commit/c273cf771f9d479526e1e0fe4c0a5d461dff6383))
22+
* **mcp:** add client instantiation options to code tool ([71cc60e](https://github.com/stainless-api/stainless-api-typescript/commit/71cc60e3a35a4ed5cf7bb44ae17d1033804d9079))
23+
* **mcp:** pass base url to code tool ([fc5e7d2](https://github.com/stainless-api/stainless-api-typescript/commit/fc5e7d28983fea9e698f29730f2f0f3db4b737d5))
24+
* production stage ([c1a4349](https://github.com/stainless-api/stainless-api-typescript/commit/c1a4349857b91d2637f01b9420ff5be14f806a15))
25+
26+
27+
### Chores
28+
29+
* **mcp:** remove deprecated tool schemes ([8b033b8](https://github.com/stainless-api/stainless-api-typescript/commit/8b033b81b2581291ed1cfcbfaa295276080e59a4))
30+
31+
32+
### Refactors
33+
34+
* **api:** change completed shape ([ec7f479](https://github.com/stainless-api/stainless-api-typescript/commit/ec7f479865b9f619d433cbcecc3980b9f8dd2c44))
35+
336
## 0.1.0-alpha.19 (2025-12-09)
437

538
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)

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.19",
3+
"version": "0.1.0-alpha.20",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <local-dev@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.19",
3+
"version": "0.1.0-alpha.20",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <local-dev@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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'stainless_api_sdk_api',
24-
version: '0.1.0-alpha.19',
24+
version: '0.1.0-alpha.20',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

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.19'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.20'; // x-release-please-version

0 commit comments

Comments
 (0)