Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.2.3"
".": "4.3.0"
}
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 4.3.0 (2025-12-06)

Full Changelog: [v4.2.3...v4.3.0](https://github.com/beeper/desktop-api-js/compare/v4.2.3...v4.3.0)

### Features

* **mcp:** add detail field to docs search tool ([94efb53](https://github.com/beeper/desktop-api-js/commit/94efb539eb6279bd5e8076e9652aaac821d7e465))
* **mcp:** add typescript check to code execution tool ([dd5606a](https://github.com/beeper/desktop-api-js/commit/dd5606aeb6f72a2b7383a7a52d47a3786adb7fe8))
* **mcp:** handle code mode calls in the Stainless API ([0583d4a](https://github.com/beeper/desktop-api-js/commit/0583d4a1b97f825d9c3e76c9eae155d09e108f4c))
* **mcp:** return logs on code tool errors ([d635e28](https://github.com/beeper/desktop-api-js/commit/d635e28ce32796e0e71b8ee21a579fbca061f1f5))


### Bug Fixes

* **mcp:** correct code tool API endpoint ([e4d8fd3](https://github.com/beeper/desktop-api-js/commit/e4d8fd374547a678ae125358bcbc52f092df00cb))
* **mcp:** return correct lines on typescript errors ([2670800](https://github.com/beeper/desktop-api-js/commit/267080003620b463563fbe0fa1808a12d471a692))
* **mcp:** return tool execution error on api error ([7886dae](https://github.com/beeper/desktop-api-js/commit/7886dae7ae5da785ef4bea988f253e35007ee16a))
* **mcp:** return tool execution error on jq failure ([cadbf31](https://github.com/beeper/desktop-api-js/commit/cadbf3111d4aff52467527cbad99abba90164cc8))


### Chores

* **client:** fix logger property type ([6ecc636](https://github.com/beeper/desktop-api-js/commit/6ecc636c5e0c2a2aeaed7da6e57a1663b3d711e7))
* **internal:** codegen related update ([a44f1e6](https://github.com/beeper/desktop-api-js/commit/a44f1e6e5afca1513ef3484f853fe45599e4a1ee))
* **internal:** codegen related update ([6148100](https://github.com/beeper/desktop-api-js/commit/61481002797da513cdf64b33161fb6399de710aa))
* **internal:** upgrade eslint ([7256acf](https://github.com/beeper/desktop-api-js/commit/7256acf2e8fdd02aae2b169e15547fddb10fb250))
* **mcp:** clarify http auth error ([79374fd](https://github.com/beeper/desktop-api-js/commit/79374fd11b48ad2c96097184b492b6f6f7710593))
* **mcp:** upgrade jq-web ([298fec2](https://github.com/beeper/desktop-api-js/commit/298fec2720697f7c36077104a2325ecd05d9a839))
* use latest @modelcontextprotocol/sdk ([6400f79](https://github.com/beeper/desktop-api-js/commit/6400f79bf4d6fd5bc46a11ccf2336327910a39e9))

## 4.2.3 (2025-11-08)

Full Changelog: [v4.2.2...v4.2.3](https://github.com/beeper/desktop-api-js/compare/v4.2.2...v4.2.3)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@beeper/desktop-api",
"version": "4.2.3",
"version": "4.3.0",
"description": "The official TypeScript library for the Beeper Desktop API",
"author": "Beeper Desktop <help@beeper.com>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -35,7 +35,7 @@
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"eslint": "^9.20.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"iconv-lite": "^0.6.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@beeper/desktop-mcp",
"version": "4.2.3",
"version": "4.3.0",
"description": "The official MCP Server for the Beeper Desktop API",
"author": "Beeper Desktop <help@beeper.com>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -32,13 +32,13 @@
"dependencies": {
"@beeper/desktop-api": "file:../../dist/",
"@cloudflare/cabidela": "^0.2.4",
"@modelcontextprotocol/sdk": "^1.11.5",
"@modelcontextprotocol/sdk": "^1.24.0",
"@valtown/deno-http-worker": "^0.0.21",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"fuse.js": "^7.1.0",
"jq-web": "https://github.com/stainless-api/jq-web/releases/download/v0.8.6/jq-web.tar.gz",
"jq-web": "https://github.com/stainless-api/jq-web/releases/download/v0.8.8/jq-web.tar.gz",
"qs": "^6.14.0",
"typescript": "5.8.3",
"yargs": "^17.7.2",
Expand Down
3 changes: 0 additions & 3 deletions packages/mcp-server/src/code-tool-paths.cts

This file was deleted.

6 changes: 5 additions & 1 deletion packages/mcp-server/src/code-tool-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ export type WorkerSuccess = {
logLines: string[];
errLines: string[];
};
export type WorkerError = { message: string | undefined };
export type WorkerError = {
message: string | undefined;
logLines: string[];
errLines: string[];
};
209 changes: 0 additions & 209 deletions packages/mcp-server/src/code-tool-worker.ts

This file was deleted.

Loading