Skip to content

Commit 68775f4

Browse files
release: 6.38.1 (#632)
* codegen metadata * fix(mcpb): pin @anthropic-ai/mcpb version * release: 6.38.1 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 692de1c commit 68775f4

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
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-
".": "6.38.0"
2+
".": "6.38.1"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-0105d239fcaf84750c886dfa6c2cfbf2b2087f89a48f8827c4cbe28479ebfb13.yml
33
openapi_spec_hash: 34895c3d3c137fb9f5a019ac5370afbb
4-
config_hash: 6d3585c0032e08d723d077d660fc8448
4+
config_hash: 5c64f384746e7570c10f19fe241062a7

CHANGELOG.md

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

3+
## 6.38.1 (2025-10-30)
4+
5+
Full Changelog: [v6.38.0...v6.38.1](https://github.com/Finch-API/finch-api-node/compare/v6.38.0...v6.38.1)
6+
7+
### Bug Fixes
8+
9+
* **mcpb:** pin @anthropic-ai/mcpb version ([77d0632](https://github.com/Finch-API/finch-api-node/commit/77d0632d886fee1d2358b723de7b9585dc2db6b6))
10+
311
## 6.38.0 (2025-10-27)
412

513
Full Changelog: [v6.37.0...v6.38.0](https://github.com/Finch-API/finch-api-node/compare/v6.37.0...v6.38.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tryfinch/finch-api",
3-
"version": "6.38.0",
3+
"version": "6.38.1",
44
"description": "The official TypeScript library for the Finch API",
55
"author": "Finch <founders@tryfinch.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tryfinch/finch-api-mcp",
3-
"version": "6.38.0",
3+
"version": "6.38.1",
44
"description": "The official MCP Server for the Finch API",
55
"author": "Finch <founders@tryfinch.com>",
66
"types": "dist/index.d.ts",
@@ -47,7 +47,7 @@
4747
"mcp-server": "dist/index.js"
4848
},
4949
"devDependencies": {
50-
"@anthropic-ai/mcpb": "^1.1.0",
50+
"@anthropic-ai/mcpb": "1.1.0",
5151
"@types/cors": "^2.8.19",
5252
"@types/express": "^5.0.3",
5353
"@types/jest": "^29.4.0",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const newMcpServer = () =>
3333
new McpServer(
3434
{
3535
name: 'tryfinch_finch_api_api',
36-
version: '6.38.0',
36+
version: '6.38.1',
3737
},
3838
{ capabilities: { tools: {}, logging: {} } },
3939
);

src/version.ts

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

0 commit comments

Comments
 (0)