Skip to content

Commit 5560fb1

Browse files
release: 2.7.0
1 parent 3212159 commit 5560fb1

6 files changed

Lines changed: 26 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-
".": "2.6.1"
2+
".": "2.7.0"
33
}

CHANGELOG.md

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

3+
## 2.7.0 (2025-11-06)
4+
5+
Full Changelog: [v2.6.1...v2.7.0](https://github.com/img-processing/node-sdk/compare/v2.6.1...v2.7.0)
6+
7+
### Features
8+
9+
* **mcp:** enable optional code execution tool on http mcp servers ([52c45d3](https://github.com/img-processing/node-sdk/commit/52c45d363bb43243c6b19970e6b7698d62868412))
10+
11+
12+
### Chores
13+
14+
* mcp code tool explicit error message when missing a run function ([2c14dac](https://github.com/img-processing/node-sdk/commit/2c14dac7a2f9e52035e72581d46dc9869cb129c4))
15+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([9a39f89](https://github.com/img-processing/node-sdk/commit/9a39f89ff51947bd77a1d9600f1879bbb5c27fcb))
16+
* **mcp:** add line numbers to code tool errors ([9dfdfb9](https://github.com/img-processing/node-sdk/commit/9dfdfb9100731248a15c8246f169e0988652d11b))
17+
* use structured error when code execution tool errors ([42e8106](https://github.com/img-processing/node-sdk/commit/42e8106efcaf55589734a3c3a21aa6385dd8ca97))
18+
19+
20+
### Documentation
21+
22+
* **mcp:** add a README button for one-click add to Cursor ([3212159](https://github.com/img-processing/node-sdk/commit/321215915c782b7d53b6d7efaa2e60d95c25d3fc))
23+
324
## 2.6.1 (2025-11-04)
425

526
Full Changelog: [v2.6.0...v2.6.1](https://github.com/img-processing/node-sdk/compare/v2.6.0...v2.6.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "img-processing-sdk",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "The official TypeScript library for the Img Processing API",
55
"author": "Img Processing <[email protected]>",
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": "img-processing-mcp",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "The official MCP Server for the Img Processing API",
55
"author": "Img Processing <[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
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'img_processing_sdk_api',
37-
version: '2.6.1',
37+
version: '2.7.0',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

src/version.ts

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

0 commit comments

Comments
 (0)