@beeper/desktop-mcp 4.2.3 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +18 -199
- package/auth.d.mts +6 -0
- package/auth.d.mts.map +1 -0
- package/auth.d.ts +6 -0
- package/auth.d.ts.map +1 -0
- package/auth.js +37 -0
- package/auth.js.map +1 -0
- package/auth.mjs +32 -0
- package/auth.mjs.map +1 -0
- package/code-tool-types.d.mts +7 -7
- package/code-tool-types.d.mts.map +1 -1
- package/code-tool-types.d.ts +7 -7
- package/code-tool-types.d.ts.map +1 -1
- package/code-tool-worker.d.mts.map +1 -1
- package/code-tool-worker.d.ts.map +1 -1
- package/code-tool-worker.js +103 -19
- package/code-tool-worker.js.map +1 -1
- package/code-tool-worker.mjs +103 -19
- package/code-tool-worker.mjs.map +1 -1
- package/code-tool.d.mts +12 -3
- package/code-tool.d.mts.map +1 -1
- package/code-tool.d.ts +12 -3
- package/code-tool.d.ts.map +1 -1
- package/code-tool.js +276 -95
- package/code-tool.js.map +1 -1
- package/code-tool.mjs +273 -95
- package/code-tool.mjs.map +1 -1
- package/docs-search-tool.d.mts +22 -9
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts +22 -9
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.js +37 -6
- package/docs-search-tool.js.map +1 -1
- package/docs-search-tool.mjs +37 -6
- package/docs-search-tool.mjs.map +1 -1
- package/http.d.mts +6 -9
- package/http.d.mts.map +1 -1
- package/http.d.ts +6 -9
- package/http.d.ts.map +1 -1
- package/http.js +81 -47
- package/http.js.map +1 -1
- package/http.mjs +80 -43
- package/http.mjs.map +1 -1
- package/index.js +19 -50
- package/index.js.map +1 -1
- package/index.mjs +19 -50
- package/index.mjs.map +1 -1
- package/instructions.d.mts +2 -0
- package/instructions.d.mts.map +1 -0
- package/instructions.d.ts +2 -0
- package/instructions.d.ts.map +1 -0
- package/instructions.js +48 -0
- package/instructions.js.map +1 -0
- package/instructions.mjs +45 -0
- package/instructions.mjs.map +1 -0
- package/logger.d.mts +7 -0
- package/logger.d.mts.map +1 -0
- package/logger.d.ts +7 -0
- package/logger.d.ts.map +1 -0
- package/logger.js +29 -0
- package/logger.js.map +1 -0
- package/logger.mjs +22 -0
- package/logger.mjs.map +1 -0
- package/methods.d.mts +10 -0
- package/methods.d.mts.map +1 -0
- package/methods.d.ts +10 -0
- package/methods.d.ts.map +1 -0
- package/methods.js +203 -0
- package/methods.js.map +1 -0
- package/methods.mjs +199 -0
- package/methods.mjs.map +1 -0
- package/options.d.mts +9 -9
- package/options.d.mts.map +1 -1
- package/options.d.ts +9 -9
- package/options.d.ts.map +1 -1
- package/options.js +54 -359
- package/options.js.map +1 -1
- package/options.mjs +54 -359
- package/options.mjs.map +1 -1
- package/package.json +68 -72
- package/server.d.mts +10 -16
- package/server.d.mts.map +1 -1
- package/server.d.ts +10 -16
- package/server.d.ts.map +1 -1
- package/server.js +82 -101
- package/server.js.map +1 -1
- package/server.mjs +81 -96
- package/server.mjs.map +1 -1
- package/src/auth.ts +42 -0
- package/src/code-tool-types.ts +8 -5
- package/src/code-tool-worker.ts +118 -34
- package/src/code-tool.ts +359 -118
- package/src/docs-search-tool.ts +59 -7
- package/src/http.ts +99 -50
- package/src/index.ts +22 -63
- package/src/instructions.ts +67 -0
- package/src/logger.ts +28 -0
- package/src/methods.ts +224 -0
- package/src/options.ts +72 -384
- package/src/server.ts +94 -117
- package/src/stdio.ts +6 -5
- package/src/{tools/types.ts → types.ts} +25 -5
- package/src/util.ts +25 -0
- package/stdio.d.mts +1 -1
- package/stdio.d.mts.map +1 -1
- package/stdio.d.ts +1 -1
- package/stdio.d.ts.map +1 -1
- package/stdio.js +5 -4
- package/stdio.js.map +1 -1
- package/stdio.mjs +5 -4
- package/stdio.mjs.map +1 -1
- package/{tools/types.d.mts → types.d.mts} +10 -2
- package/types.d.mts.map +1 -0
- package/{tools/types.d.ts → types.d.ts} +10 -2
- package/types.d.ts.map +1 -0
- package/{tools/types.js → types.js} +12 -0
- package/types.js.map +1 -0
- package/{tools/types.mjs → types.mjs} +11 -0
- package/types.mjs.map +1 -0
- package/util.d.mts +4 -0
- package/util.d.mts.map +1 -0
- package/util.d.ts +4 -0
- package/util.d.ts.map +1 -0
- package/util.js +30 -0
- package/util.js.map +1 -0
- package/util.mjs +24 -0
- package/util.mjs.map +1 -0
- package/compat.d.mts +0 -58
- package/compat.d.mts.map +0 -1
- package/compat.d.ts +0 -58
- package/compat.d.ts.map +0 -1
- package/compat.js +0 -387
- package/compat.js.map +0 -1
- package/compat.mjs +0 -378
- package/compat.mjs.map +0 -1
- package/dynamic-tools.d.mts +0 -12
- package/dynamic-tools.d.mts.map +0 -1
- package/dynamic-tools.d.ts +0 -12
- package/dynamic-tools.d.ts.map +0 -1
- package/dynamic-tools.js +0 -135
- package/dynamic-tools.js.map +0 -1
- package/dynamic-tools.mjs +0 -132
- package/dynamic-tools.mjs.map +0 -1
- package/filtering.d.mts +0 -2
- package/filtering.d.mts.map +0 -1
- package/filtering.d.ts +0 -2
- package/filtering.d.ts.map +0 -1
- package/filtering.js +0 -20
- package/filtering.js.map +0 -1
- package/filtering.mjs +0 -13
- package/filtering.mjs.map +0 -1
- package/handlers/get-accounts.d.mts +0 -3
- package/handlers/get-accounts.d.mts.map +0 -1
- package/handlers/get-accounts.d.ts +0 -3
- package/handlers/get-accounts.d.ts.map +0 -1
- package/handlers/get-accounts.js +0 -32
- package/handlers/get-accounts.js.map +0 -1
- package/handlers/get-accounts.mjs +0 -28
- package/handlers/get-accounts.mjs.map +0 -1
- package/handlers/get-chat.d.mts +0 -3
- package/handlers/get-chat.d.mts.map +0 -1
- package/handlers/get-chat.d.ts +0 -3
- package/handlers/get-chat.d.ts.map +0 -1
- package/handlers/get-chat.js +0 -20
- package/handlers/get-chat.js.map +0 -1
- package/handlers/get-chat.mjs +0 -16
- package/handlers/get-chat.mjs.map +0 -1
- package/handlers/index.d.mts +0 -3
- package/handlers/index.d.mts.map +0 -1
- package/handlers/index.d.ts +0 -3
- package/handlers/index.d.ts.map +0 -1
- package/handlers/index.js +0 -30
- package/handlers/index.js.map +0 -1
- package/handlers/index.mjs +0 -27
- package/handlers/index.mjs.map +0 -1
- package/handlers/list-chats.d.mts +0 -3
- package/handlers/list-chats.d.mts.map +0 -1
- package/handlers/list-chats.d.ts +0 -3
- package/handlers/list-chats.d.ts.map +0 -1
- package/handlers/list-chats.js +0 -46
- package/handlers/list-chats.js.map +0 -1
- package/handlers/list-chats.mjs +0 -42
- package/handlers/list-chats.mjs.map +0 -1
- package/handlers/list-messages.d.mts +0 -3
- package/handlers/list-messages.d.mts.map +0 -1
- package/handlers/list-messages.d.ts +0 -3
- package/handlers/list-messages.d.ts.map +0 -1
- package/handlers/list-messages.js +0 -34
- package/handlers/list-messages.js.map +0 -1
- package/handlers/list-messages.mjs +0 -30
- package/handlers/list-messages.mjs.map +0 -1
- package/handlers/open-app.d.mts +0 -3
- package/handlers/open-app.d.mts.map +0 -1
- package/handlers/open-app.d.ts +0 -3
- package/handlers/open-app.d.ts.map +0 -1
- package/handlers/open-app.js +0 -26
- package/handlers/open-app.js.map +0 -1
- package/handlers/open-app.mjs +0 -22
- package/handlers/open-app.mjs.map +0 -1
- package/handlers/search-chats.d.mts +0 -3
- package/handlers/search-chats.d.mts.map +0 -1
- package/handlers/search-chats.d.ts +0 -3
- package/handlers/search-chats.d.ts.map +0 -1
- package/handlers/search-chats.js +0 -38
- package/handlers/search-chats.js.map +0 -1
- package/handlers/search-chats.mjs +0 -34
- package/handlers/search-chats.mjs.map +0 -1
- package/handlers/search-messages.d.mts +0 -3
- package/handlers/search-messages.d.mts.map +0 -1
- package/handlers/search-messages.d.ts +0 -3
- package/handlers/search-messages.d.ts.map +0 -1
- package/handlers/search-messages.js +0 -11
- package/handlers/search-messages.js.map +0 -1
- package/handlers/search-messages.mjs +0 -7
- package/handlers/search-messages.mjs.map +0 -1
- package/handlers/search.d.mts +0 -3
- package/handlers/search.d.mts.map +0 -1
- package/handlers/search.d.ts +0 -3
- package/handlers/search.d.ts.map +0 -1
- package/handlers/search.js +0 -29
- package/handlers/search.js.map +0 -1
- package/handlers/search.mjs +0 -25
- package/handlers/search.mjs.map +0 -1
- package/handlers/send-message.d.mts +0 -3
- package/handlers/send-message.d.mts.map +0 -1
- package/handlers/send-message.d.ts +0 -3
- package/handlers/send-message.d.ts.map +0 -1
- package/handlers/send-message.js +0 -20
- package/handlers/send-message.js.map +0 -1
- package/handlers/send-message.mjs +0 -16
- package/handlers/send-message.mjs.map +0 -1
- package/handlers/utils.d.mts +0 -29
- package/handlers/utils.d.mts.map +0 -1
- package/handlers/utils.d.ts +0 -29
- package/handlers/utils.d.ts.map +0 -1
- package/handlers/utils.js +0 -296
- package/handlers/utils.js.map +0 -1
- package/handlers/utils.mjs +0 -282
- package/handlers/utils.mjs.map +0 -1
- package/headers.d.mts +0 -4
- package/headers.d.mts.map +0 -1
- package/headers.d.ts +0 -4
- package/headers.d.ts.map +0 -1
- package/headers.js +0 -22
- package/headers.js.map +0 -1
- package/headers.mjs +0 -18
- package/headers.mjs.map +0 -1
- package/src/compat.ts +0 -483
- package/src/dynamic-tools.ts +0 -159
- package/src/filtering.ts +0 -14
- package/src/handlers/get-accounts.ts +0 -28
- package/src/handlers/get-chat.ts +0 -18
- package/src/handlers/index.ts +0 -29
- package/src/handlers/list-chats.ts +0 -47
- package/src/handlers/list-messages.ts +0 -33
- package/src/handlers/open-app.ts +0 -20
- package/src/handlers/search-chats.ts +0 -39
- package/src/handlers/search-messages.ts +0 -8
- package/src/handlers/search.ts +0 -24
- package/src/handlers/send-message.ts +0 -17
- package/src/handlers/utils.ts +0 -381
- package/src/headers.ts +0 -23
- package/src/tools/accounts/get-accounts.ts +0 -34
- package/src/tools/chats/archive-chat.ts +0 -43
- package/src/tools/chats/get-chat.ts +0 -45
- package/src/tools/chats/reminders/clear-chat-reminder.ts +0 -41
- package/src/tools/chats/reminders/set-chat-reminder.ts +0 -54
- package/src/tools/chats/search-chats.ts +0 -104
- package/src/tools/index.ts +0 -92
- package/src/tools/messages/list-messages.ts +0 -51
- package/src/tools/messages/search-messages.ts +0 -123
- package/src/tools/messages/send-message.ts +0 -47
- package/src/tools/top-level/focus-app.ts +0 -52
- package/src/tools/top-level/search.ts +0 -41
- package/src/tools.ts +0 -1
- package/tools/accounts/get-accounts.d.mts +0 -45
- package/tools/accounts/get-accounts.d.mts.map +0 -1
- package/tools/accounts/get-accounts.d.ts +0 -45
- package/tools/accounts/get-accounts.d.ts.map +0 -1
- package/tools/accounts/get-accounts.js +0 -31
- package/tools/accounts/get-accounts.js.map +0 -1
- package/tools/accounts/get-accounts.mjs +0 -27
- package/tools/accounts/get-accounts.mjs.map +0 -1
- package/tools/chats/archive-chat.d.mts +0 -45
- package/tools/chats/archive-chat.d.mts.map +0 -1
- package/tools/chats/archive-chat.d.ts +0 -45
- package/tools/chats/archive-chat.d.ts.map +0 -1
- package/tools/chats/archive-chat.js +0 -40
- package/tools/chats/archive-chat.js.map +0 -1
- package/tools/chats/archive-chat.mjs +0 -36
- package/tools/chats/archive-chat.mjs.map +0 -1
- package/tools/chats/get-chat.d.mts +0 -45
- package/tools/chats/get-chat.d.mts.map +0 -1
- package/tools/chats/get-chat.d.ts +0 -45
- package/tools/chats/get-chat.d.ts.map +0 -1
- package/tools/chats/get-chat.js +0 -41
- package/tools/chats/get-chat.js.map +0 -1
- package/tools/chats/get-chat.mjs +0 -37
- package/tools/chats/get-chat.mjs.map +0 -1
- package/tools/chats/reminders/clear-chat-reminder.d.mts +0 -45
- package/tools/chats/reminders/clear-chat-reminder.d.mts.map +0 -1
- package/tools/chats/reminders/clear-chat-reminder.d.ts +0 -45
- package/tools/chats/reminders/clear-chat-reminder.d.ts.map +0 -1
- package/tools/chats/reminders/clear-chat-reminder.js +0 -38
- package/tools/chats/reminders/clear-chat-reminder.js.map +0 -1
- package/tools/chats/reminders/clear-chat-reminder.mjs +0 -34
- package/tools/chats/reminders/clear-chat-reminder.mjs.map +0 -1
- package/tools/chats/reminders/set-chat-reminder.d.mts +0 -45
- package/tools/chats/reminders/set-chat-reminder.d.mts.map +0 -1
- package/tools/chats/reminders/set-chat-reminder.d.ts +0 -45
- package/tools/chats/reminders/set-chat-reminder.d.ts.map +0 -1
- package/tools/chats/reminders/set-chat-reminder.js +0 -51
- package/tools/chats/reminders/set-chat-reminder.js.map +0 -1
- package/tools/chats/reminders/set-chat-reminder.mjs +0 -47
- package/tools/chats/reminders/set-chat-reminder.mjs.map +0 -1
- package/tools/chats/search-chats.d.mts +0 -45
- package/tools/chats/search-chats.d.mts.map +0 -1
- package/tools/chats/search-chats.d.ts +0 -45
- package/tools/chats/search-chats.d.ts.map +0 -1
- package/tools/chats/search-chats.js +0 -92
- package/tools/chats/search-chats.js.map +0 -1
- package/tools/chats/search-chats.mjs +0 -88
- package/tools/chats/search-chats.mjs.map +0 -1
- package/tools/index.d.mts +0 -10
- package/tools/index.d.mts.map +0 -1
- package/tools/index.d.ts +0 -10
- package/tools/index.d.ts.map +0 -1
- package/tools/index.js +0 -76
- package/tools/index.js.map +0 -1
- package/tools/index.mjs +0 -69
- package/tools/index.mjs.map +0 -1
- package/tools/messages/list-messages.d.mts +0 -45
- package/tools/messages/list-messages.d.mts.map +0 -1
- package/tools/messages/list-messages.d.ts +0 -45
- package/tools/messages/list-messages.d.ts.map +0 -1
- package/tools/messages/list-messages.js +0 -47
- package/tools/messages/list-messages.js.map +0 -1
- package/tools/messages/list-messages.mjs +0 -43
- package/tools/messages/list-messages.mjs.map +0 -1
- package/tools/messages/search-messages.d.mts +0 -45
- package/tools/messages/search-messages.d.mts.map +0 -1
- package/tools/messages/search-messages.d.ts +0 -45
- package/tools/messages/search-messages.d.ts.map +0 -1
- package/tools/messages/search-messages.js +0 -110
- package/tools/messages/search-messages.js.map +0 -1
- package/tools/messages/search-messages.mjs +0 -106
- package/tools/messages/search-messages.mjs.map +0 -1
- package/tools/messages/send-message.d.mts +0 -45
- package/tools/messages/send-message.d.mts.map +0 -1
- package/tools/messages/send-message.d.ts +0 -45
- package/tools/messages/send-message.d.ts.map +0 -1
- package/tools/messages/send-message.js +0 -43
- package/tools/messages/send-message.js.map +0 -1
- package/tools/messages/send-message.mjs +0 -39
- package/tools/messages/send-message.mjs.map +0 -1
- package/tools/top-level/focus-app.d.mts +0 -45
- package/tools/top-level/focus-app.d.mts.map +0 -1
- package/tools/top-level/focus-app.d.ts +0 -45
- package/tools/top-level/focus-app.d.ts.map +0 -1
- package/tools/top-level/focus-app.js +0 -47
- package/tools/top-level/focus-app.js.map +0 -1
- package/tools/top-level/focus-app.mjs +0 -43
- package/tools/top-level/focus-app.mjs.map +0 -1
- package/tools/top-level/search.d.mts +0 -45
- package/tools/top-level/search.d.mts.map +0 -1
- package/tools/top-level/search.d.ts +0 -45
- package/tools/top-level/search.d.ts.map +0 -1
- package/tools/top-level/search.js +0 -37
- package/tools/top-level/search.js.map +0 -1
- package/tools/top-level/search.mjs +0 -33
- package/tools/top-level/search.mjs.map +0 -1
- package/tools/types.d.mts.map +0 -1
- package/tools/types.d.ts.map +0 -1
- package/tools/types.js.map +0 -1
- package/tools/types.mjs.map +0 -1
- package/tools.d.mts +0 -2
- package/tools.d.mts.map +0 -1
- package/tools.d.ts +0 -2
- package/tools.d.ts.map +0 -1
- package/tools.js +0 -18
- package/tools.js.map +0 -1
- package/tools.mjs +0 -2
- package/tools.mjs.map +0 -1
package/code-tool.mjs
CHANGED
|
@@ -1,6 +1,38 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
import
|
|
3
|
-
import
|
|
2
|
+
import fs from 'node:fs';
|
|
3
|
+
import path from 'node:path';
|
|
4
|
+
import url from 'node:url';
|
|
5
|
+
import { newDenoHTTPWorker } from '@valtown/deno-http-worker';
|
|
6
|
+
import { workerPath } from './code-tool-paths.cjs';
|
|
7
|
+
import { asErrorResult, asTextContentResult, } from "./types.mjs";
|
|
8
|
+
import { readEnv, requireValue } from "./util.mjs";
|
|
9
|
+
import { getLogger } from "./logger.mjs";
|
|
10
|
+
const prompt = `Runs JavaScript code to interact with the Beeper Desktop API.
|
|
11
|
+
|
|
12
|
+
You are a skilled TypeScript programmer writing code to interface with the service.
|
|
13
|
+
Define an async function named "run" that takes a single parameter of an initialized SDK client and it will be run.
|
|
14
|
+
For example:
|
|
15
|
+
|
|
16
|
+
\`\`\`
|
|
17
|
+
async function run(client) {
|
|
18
|
+
const page = await client.chats.search({
|
|
19
|
+
includeMuted: true,
|
|
20
|
+
limit: 3,
|
|
21
|
+
type: 'single',
|
|
22
|
+
});
|
|
23
|
+
const chat = page.items[0]
|
|
24
|
+
|
|
25
|
+
console.log(chat.id);
|
|
26
|
+
}
|
|
27
|
+
\`\`\`
|
|
28
|
+
|
|
29
|
+
You will be returned anything that your function returns, plus the results of any console.log statements.
|
|
30
|
+
Do not add try-catch blocks for single API calls. The tool will handle errors for you.
|
|
31
|
+
Do not add comments unless necessary for generating better code.
|
|
32
|
+
Code will run in a container, and cannot interact with the network outside of the given SDK client.
|
|
33
|
+
Variables will not persist between calls, so make sure to return or log any data you might need later.
|
|
34
|
+
Remember that you are writing TypeScript code, so you need to be careful with your types.
|
|
35
|
+
Always type dynamic key-value stores explicitly as Record<string, YourValueType> instead of {}.`;
|
|
4
36
|
/**
|
|
5
37
|
* A tool that runs code against a copy of the SDK.
|
|
6
38
|
*
|
|
@@ -8,112 +40,258 @@ import { pathToFileURL } from 'node:url';
|
|
|
8
40
|
* we expose a single tool that can be used to search for endpoints by name, resource, operation, or tag, and then
|
|
9
41
|
* a generic endpoint that can be used to invoke any endpoint with the provided arguments.
|
|
10
42
|
*
|
|
11
|
-
* @param
|
|
43
|
+
* @param blockedMethods - The methods to block for code execution. Blocking is done by simple string
|
|
44
|
+
* matching, so it is not secure against obfuscation. For stronger security, block in the downstream API
|
|
45
|
+
* with limited API keys.
|
|
46
|
+
* @param codeExecutionMode - Whether to execute code in a local Deno environment or in a remote
|
|
47
|
+
* sandbox environment hosted by Stainless.
|
|
12
48
|
*/
|
|
13
|
-
export
|
|
49
|
+
export function codeTool({ blockedMethods, codeExecutionMode, }) {
|
|
14
50
|
const metadata = { resource: 'all', operation: 'write', tags: [] };
|
|
15
51
|
const tool = {
|
|
16
52
|
name: 'execute',
|
|
17
|
-
description:
|
|
18
|
-
inputSchema: {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
`--allow-read=code-tool-worker.mjs,${workerPath.replace(/([\/\\]node_modules)[\/\\].+$/, '$1')}/`,
|
|
30
|
-
`--allow-net=${baseURLHostname}`,
|
|
31
|
-
// Allow environment variables because instantiating the client will try to read from them,
|
|
32
|
-
// even though they are not set.
|
|
33
|
-
'--allow-env',
|
|
34
|
-
],
|
|
35
|
-
printOutput: true,
|
|
36
|
-
spawnOptions: {
|
|
37
|
-
cwd: dirname(workerPath),
|
|
53
|
+
description: prompt,
|
|
54
|
+
inputSchema: {
|
|
55
|
+
type: 'object',
|
|
56
|
+
properties: {
|
|
57
|
+
code: {
|
|
58
|
+
type: 'string',
|
|
59
|
+
description: 'Code to execute.',
|
|
60
|
+
},
|
|
61
|
+
intent: {
|
|
62
|
+
type: 'string',
|
|
63
|
+
description: 'Task you are trying to perform. Used for improving the service.',
|
|
64
|
+
},
|
|
38
65
|
},
|
|
39
|
-
|
|
66
|
+
required: ['code'],
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
const logger = getLogger();
|
|
70
|
+
const handler = async ({ reqContext, args, }) => {
|
|
71
|
+
const code = args.code;
|
|
72
|
+
// Do very basic blocking of code that includes forbidden method names.
|
|
73
|
+
//
|
|
74
|
+
// WARNING: This is not secure against obfuscation and other evasion methods. If
|
|
75
|
+
// stronger security blocks are required, then these should be enforced in the downstream
|
|
76
|
+
// API (e.g., by having users call the MCP server with API keys with limited permissions).
|
|
77
|
+
if (blockedMethods) {
|
|
78
|
+
const blockedMatches = blockedMethods.filter((method) => code.includes(method.fullyQualifiedName));
|
|
79
|
+
if (blockedMatches.length > 0) {
|
|
80
|
+
return asErrorResult(`The following methods have been blocked by the MCP server and cannot be used in code execution: ${blockedMatches
|
|
81
|
+
.map((m) => m.fullyQualifiedName)
|
|
82
|
+
.join(', ')}`);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
let result;
|
|
86
|
+
const startTime = Date.now();
|
|
87
|
+
if (codeExecutionMode === 'local') {
|
|
88
|
+
logger.debug('Executing code in local Deno environment');
|
|
89
|
+
result = await localDenoHandler({ reqContext, args });
|
|
90
|
+
}
|
|
91
|
+
else {
|
|
92
|
+
logger.debug('Executing code in remote Stainless environment');
|
|
93
|
+
result = await remoteStainlessHandler({ reqContext, args });
|
|
94
|
+
}
|
|
95
|
+
logger.info({
|
|
96
|
+
codeExecutionMode,
|
|
97
|
+
durationMs: Date.now() - startTime,
|
|
98
|
+
isError: result.isError,
|
|
99
|
+
contentRows: result.content?.length ?? 0,
|
|
100
|
+
}, 'Got code tool execution result');
|
|
101
|
+
return result;
|
|
102
|
+
};
|
|
103
|
+
return { metadata, tool, handler };
|
|
104
|
+
}
|
|
105
|
+
const remoteStainlessHandler = async ({ reqContext, args, }) => {
|
|
106
|
+
const code = args.code;
|
|
107
|
+
const intent = args.intent;
|
|
108
|
+
const client = reqContext.client;
|
|
109
|
+
const codeModeEndpoint = readEnv('CODE_MODE_ENDPOINT_URL') ?? 'https://api.stainless.com/api/ai/code-tool';
|
|
110
|
+
// Setting a Stainless API key authenticates requests to the code tool endpoint.
|
|
111
|
+
const res = await fetch(codeModeEndpoint, {
|
|
112
|
+
method: 'POST',
|
|
113
|
+
headers: {
|
|
114
|
+
...(reqContext.stainlessApiKey && { Authorization: reqContext.stainlessApiKey }),
|
|
115
|
+
'Content-Type': 'application/json',
|
|
116
|
+
'x-stainless-mcp-client-envs': JSON.stringify({
|
|
117
|
+
BEEPER_ACCESS_TOKEN: requireValue(readEnv('BEEPER_ACCESS_TOKEN') ?? client.accessToken, 'set BEEPER_ACCESS_TOKEN environment variable or provide accessToken client option'),
|
|
118
|
+
BEEPER_DESKTOP_BASE_URL: readEnv('BEEPER_DESKTOP_BASE_URL') ?? client.baseURL ?? undefined,
|
|
119
|
+
}),
|
|
120
|
+
},
|
|
121
|
+
body: JSON.stringify({
|
|
122
|
+
project_name: 'beeper-desktop-api',
|
|
123
|
+
code,
|
|
124
|
+
intent,
|
|
125
|
+
client_opts: {},
|
|
126
|
+
}),
|
|
127
|
+
});
|
|
128
|
+
if (!res.ok) {
|
|
129
|
+
if (res.status === 404 && !reqContext.stainlessApiKey) {
|
|
130
|
+
throw new Error('Could not access code tool for this project. You may need to provide a Stainless API key via the STAINLESS_API_KEY environment variable, the --stainless-api-key flag, or the x-stainless-api-key HTTP header.');
|
|
131
|
+
}
|
|
132
|
+
throw new Error(`${res.status}: ${res.statusText} error when trying to contact Code Tool server. Details: ${await res.text()}`);
|
|
133
|
+
}
|
|
134
|
+
const { is_error, result, log_lines, err_lines } = (await res.json());
|
|
135
|
+
const hasLogs = log_lines.length > 0 || err_lines.length > 0;
|
|
136
|
+
const output = {
|
|
137
|
+
result,
|
|
138
|
+
...(log_lines.length > 0 && { log_lines }),
|
|
139
|
+
...(err_lines.length > 0 && { err_lines }),
|
|
140
|
+
};
|
|
141
|
+
if (is_error) {
|
|
142
|
+
return asErrorResult(typeof result === 'string' && !hasLogs ? result : JSON.stringify(output, null, 2));
|
|
143
|
+
}
|
|
144
|
+
return asTextContentResult(output);
|
|
145
|
+
};
|
|
146
|
+
const localDenoHandler = async ({ reqContext, args, }) => {
|
|
147
|
+
const client = reqContext.client;
|
|
148
|
+
const baseURLHostname = new URL(client.baseURL).hostname;
|
|
149
|
+
const { code } = args;
|
|
150
|
+
let denoPath;
|
|
151
|
+
const packageRoot = path.resolve(path.dirname(workerPath), '..');
|
|
152
|
+
const packageNodeModulesPath = path.resolve(packageRoot, 'node_modules');
|
|
153
|
+
// Check if deno is in PATH
|
|
154
|
+
const { execSync } = await import('node:child_process');
|
|
155
|
+
try {
|
|
156
|
+
execSync('command -v deno', { stdio: 'ignore' });
|
|
157
|
+
denoPath = 'deno';
|
|
158
|
+
}
|
|
159
|
+
catch {
|
|
40
160
|
try {
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
161
|
+
// Use deno binary in node_modules if it's found
|
|
162
|
+
const denoNodeModulesPath = path.resolve(packageNodeModulesPath, 'deno', 'bin.cjs');
|
|
163
|
+
await fs.promises.access(denoNodeModulesPath, fs.constants.X_OK);
|
|
164
|
+
denoPath = denoNodeModulesPath;
|
|
165
|
+
}
|
|
166
|
+
catch {
|
|
167
|
+
return asErrorResult('Deno is required for code execution but was not found. ' +
|
|
168
|
+
'Install it from https://deno.land or run: npm install deno');
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
const allowReadPaths = [
|
|
172
|
+
'code-tool-worker.mjs',
|
|
173
|
+
`${workerPath.replace(/([\/\\]node_modules)[\/\\].+$/, '$1')}/`,
|
|
174
|
+
packageRoot,
|
|
175
|
+
];
|
|
176
|
+
// Follow symlinks in node_modules to allow read access to workspace-linked packages
|
|
177
|
+
try {
|
|
178
|
+
const sdkPkgName = '@beeper/desktop-api';
|
|
179
|
+
const sdkDir = path.resolve(packageNodeModulesPath, sdkPkgName);
|
|
180
|
+
const realSdkDir = fs.realpathSync(sdkDir);
|
|
181
|
+
if (realSdkDir !== sdkDir) {
|
|
182
|
+
allowReadPaths.push(realSdkDir);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
catch {
|
|
186
|
+
// Ignore if symlink resolution fails
|
|
187
|
+
}
|
|
188
|
+
const allowRead = allowReadPaths.join(',');
|
|
189
|
+
const worker = await newDenoHTTPWorker(url.pathToFileURL(workerPath), {
|
|
190
|
+
denoExecutable: denoPath,
|
|
191
|
+
runFlags: [
|
|
192
|
+
`--node-modules-dir=manual`,
|
|
193
|
+
`--allow-read=${allowRead}`,
|
|
194
|
+
`--allow-net=${baseURLHostname}`,
|
|
195
|
+
// Allow environment variables because instantiating the client will try to read from them,
|
|
196
|
+
// even though they are not set.
|
|
197
|
+
'--allow-env',
|
|
198
|
+
],
|
|
199
|
+
printOutput: true,
|
|
200
|
+
spawnOptions: {
|
|
201
|
+
cwd: path.dirname(workerPath),
|
|
202
|
+
},
|
|
203
|
+
});
|
|
204
|
+
try {
|
|
205
|
+
const resp = await new Promise((resolve, reject) => {
|
|
206
|
+
worker.addEventListener('exit', (exitCode) => {
|
|
207
|
+
reject(new Error(`Worker exited with code ${exitCode}`));
|
|
208
|
+
});
|
|
209
|
+
const opts = {
|
|
210
|
+
baseURL: client.baseURL,
|
|
211
|
+
accessToken: client.accessToken,
|
|
212
|
+
defaultHeaders: {
|
|
213
|
+
'X-Stainless-MCP': 'true',
|
|
214
|
+
},
|
|
215
|
+
};
|
|
216
|
+
const req = worker.request('http://localhost', {
|
|
217
|
+
headers: {
|
|
218
|
+
'content-type': 'application/json',
|
|
219
|
+
},
|
|
220
|
+
method: 'POST',
|
|
221
|
+
}, (resp) => {
|
|
222
|
+
const body = [];
|
|
223
|
+
resp.on('error', (err) => {
|
|
224
|
+
reject(err);
|
|
71
225
|
});
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
code,
|
|
226
|
+
resp.on('data', (chunk) => {
|
|
227
|
+
body.push(chunk);
|
|
75
228
|
});
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
229
|
+
resp.on('end', () => {
|
|
230
|
+
resolve(new Response(Buffer.concat(body).toString(), {
|
|
231
|
+
status: resp.statusCode ?? 200,
|
|
232
|
+
headers: resp.headers,
|
|
233
|
+
}));
|
|
80
234
|
});
|
|
81
|
-
req.end();
|
|
82
235
|
});
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
236
|
+
const body = JSON.stringify({
|
|
237
|
+
opts,
|
|
238
|
+
code,
|
|
239
|
+
});
|
|
240
|
+
req.write(body, (err) => {
|
|
241
|
+
if (err != null) {
|
|
242
|
+
reject(err);
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
req.end();
|
|
246
|
+
});
|
|
247
|
+
if (resp.status === 200) {
|
|
248
|
+
const { result, log_lines, err_lines } = (await resp.json());
|
|
249
|
+
const returnOutput = result == null ? null : ({
|
|
250
|
+
type: 'text',
|
|
251
|
+
text: typeof result === 'string' ? result : JSON.stringify(result),
|
|
252
|
+
});
|
|
253
|
+
const logOutput = log_lines.length === 0 ?
|
|
254
|
+
null
|
|
255
|
+
: {
|
|
86
256
|
type: 'text',
|
|
87
|
-
text:
|
|
88
|
-
});
|
|
89
|
-
const logOutput = logLines.length === 0 ?
|
|
90
|
-
null
|
|
91
|
-
: {
|
|
92
|
-
type: 'text',
|
|
93
|
-
text: logLines.join('\n'),
|
|
94
|
-
};
|
|
95
|
-
const errOutput = errLines.length === 0 ?
|
|
96
|
-
null
|
|
97
|
-
: {
|
|
98
|
-
type: 'text',
|
|
99
|
-
text: 'Error output:\n' + errLines.join('\n'),
|
|
100
|
-
};
|
|
101
|
-
return {
|
|
102
|
-
content: [returnOutput, logOutput, errOutput].filter((block) => block !== null),
|
|
257
|
+
text: log_lines.join('\n'),
|
|
103
258
|
};
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
isError: true,
|
|
259
|
+
const errOutput = err_lines.length === 0 ?
|
|
260
|
+
null
|
|
261
|
+
: {
|
|
262
|
+
type: 'text',
|
|
263
|
+
text: 'Error output:\n' + err_lines.join('\n'),
|
|
110
264
|
};
|
|
111
|
-
|
|
265
|
+
return {
|
|
266
|
+
content: [returnOutput, logOutput, errOutput].filter((block) => block !== null),
|
|
267
|
+
};
|
|
112
268
|
}
|
|
113
|
-
|
|
114
|
-
|
|
269
|
+
else {
|
|
270
|
+
const { result, log_lines, err_lines } = (await resp.json());
|
|
271
|
+
const messageOutput = result == null ? null : ({
|
|
272
|
+
type: 'text',
|
|
273
|
+
text: typeof result === 'string' ? result : JSON.stringify(result),
|
|
274
|
+
});
|
|
275
|
+
const logOutput = log_lines.length === 0 ?
|
|
276
|
+
null
|
|
277
|
+
: {
|
|
278
|
+
type: 'text',
|
|
279
|
+
text: log_lines.join('\n'),
|
|
280
|
+
};
|
|
281
|
+
const errOutput = err_lines.length === 0 ?
|
|
282
|
+
null
|
|
283
|
+
: {
|
|
284
|
+
type: 'text',
|
|
285
|
+
text: 'Error output:\n' + err_lines.join('\n'),
|
|
286
|
+
};
|
|
287
|
+
return {
|
|
288
|
+
content: [messageOutput, logOutput, errOutput].filter((block) => block !== null),
|
|
289
|
+
isError: true,
|
|
290
|
+
};
|
|
115
291
|
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
|
|
292
|
+
}
|
|
293
|
+
finally {
|
|
294
|
+
worker.terminate();
|
|
295
|
+
}
|
|
296
|
+
};
|
|
119
297
|
//# sourceMappingURL=code-tool.mjs.map
|
package/code-tool.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-tool.mjs","sourceRoot":"","sources":["src/code-tool.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,
|
|
1
|
+
{"version":3,"file":"code-tool.mjs","sourceRoot":"","sources":["src/code-tool.ts"],"names":[],"mappings":"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"}
|
package/docs-search-tool.d.mts
CHANGED
|
@@ -1,44 +1,57 @@
|
|
|
1
|
-
import { Metadata } from "./tools/types.mjs";
|
|
2
1
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { Metadata, McpRequestContext } from "./types.mjs";
|
|
3
3
|
export declare const metadata: Metadata;
|
|
4
4
|
export declare const tool: Tool;
|
|
5
|
-
export declare const handler: (
|
|
5
|
+
export declare const handler: ({ reqContext, args, }: {
|
|
6
|
+
reqContext: McpRequestContext;
|
|
7
|
+
args: Record<string, unknown> | undefined;
|
|
8
|
+
}) => Promise<import("./types").ToolCallResult>;
|
|
6
9
|
declare const _default: {
|
|
7
10
|
metadata: Metadata;
|
|
8
11
|
tool: {
|
|
9
|
-
[x: string]: unknown;
|
|
10
|
-
name: string;
|
|
11
12
|
inputSchema: {
|
|
12
13
|
[x: string]: unknown;
|
|
13
14
|
type: "object";
|
|
14
15
|
properties?: {
|
|
15
|
-
[x: string]:
|
|
16
|
+
[x: string]: object;
|
|
16
17
|
} | undefined;
|
|
17
18
|
required?: string[] | undefined;
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
name: string;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
23
24
|
type: "object";
|
|
24
25
|
properties?: {
|
|
25
|
-
[x: string]:
|
|
26
|
+
[x: string]: object;
|
|
26
27
|
} | undefined;
|
|
27
28
|
required?: string[] | undefined;
|
|
28
29
|
} | undefined;
|
|
29
30
|
annotations?: {
|
|
30
|
-
[x: string]: unknown;
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
readOnlyHint?: boolean | undefined;
|
|
33
33
|
destructiveHint?: boolean | undefined;
|
|
34
34
|
idempotentHint?: boolean | undefined;
|
|
35
35
|
openWorldHint?: boolean | undefined;
|
|
36
36
|
} | undefined;
|
|
37
|
+
execution?: {
|
|
38
|
+
taskSupport?: "optional" | "required" | "forbidden" | undefined;
|
|
39
|
+
} | undefined;
|
|
37
40
|
_meta?: {
|
|
38
41
|
[x: string]: unknown;
|
|
39
42
|
} | undefined;
|
|
43
|
+
icons?: {
|
|
44
|
+
src: string;
|
|
45
|
+
mimeType?: string | undefined;
|
|
46
|
+
sizes?: string[] | undefined;
|
|
47
|
+
theme?: "light" | "dark" | undefined;
|
|
48
|
+
}[] | undefined;
|
|
49
|
+
title?: string | undefined;
|
|
40
50
|
};
|
|
41
|
-
handler: (
|
|
51
|
+
handler: ({ reqContext, args, }: {
|
|
52
|
+
reqContext: McpRequestContext;
|
|
53
|
+
args: Record<string, unknown> | undefined;
|
|
54
|
+
}) => Promise<import("./types").ToolCallResult>;
|
|
42
55
|
};
|
|
43
56
|
export default _default;
|
|
44
57
|
//# sourceMappingURL=docs-search-tool.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-search-tool.d.mts","sourceRoot":"","sources":["src/docs-search-tool.ts"],"names":[],"mappings":"OAEO,EAAE,
|
|
1
|
+
{"version":3,"file":"docs-search-tool.d.mts","sourceRoot":"","sources":["src/docs-search-tool.ts"],"names":[],"mappings":"OAEO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE,iBAAiB,EAAuB;AAG3D,eAAO,MAAM,QAAQ,EAAE,QAKtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2BlB,CAAC;AAKF,eAAO,MAAM,OAAO,GAAU,uBAG3B;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,8CA8CA,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAjDC;QACD,UAAU,EAAE,iBAAiB,CAAC;QAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;KAC3C;;AAgDD,wBAA2C"}
|
package/docs-search-tool.d.ts
CHANGED
|
@@ -1,44 +1,57 @@
|
|
|
1
|
-
import { Metadata } from "./tools/types.js";
|
|
2
1
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
2
|
+
import { Metadata, McpRequestContext } from "./types.js";
|
|
3
3
|
export declare const metadata: Metadata;
|
|
4
4
|
export declare const tool: Tool;
|
|
5
|
-
export declare const handler: (
|
|
5
|
+
export declare const handler: ({ reqContext, args, }: {
|
|
6
|
+
reqContext: McpRequestContext;
|
|
7
|
+
args: Record<string, unknown> | undefined;
|
|
8
|
+
}) => Promise<import("./types").ToolCallResult>;
|
|
6
9
|
declare const _default: {
|
|
7
10
|
metadata: Metadata;
|
|
8
11
|
tool: {
|
|
9
|
-
[x: string]: unknown;
|
|
10
|
-
name: string;
|
|
11
12
|
inputSchema: {
|
|
12
13
|
[x: string]: unknown;
|
|
13
14
|
type: "object";
|
|
14
15
|
properties?: {
|
|
15
|
-
[x: string]:
|
|
16
|
+
[x: string]: object;
|
|
16
17
|
} | undefined;
|
|
17
18
|
required?: string[] | undefined;
|
|
18
19
|
};
|
|
19
|
-
|
|
20
|
+
name: string;
|
|
20
21
|
description?: string | undefined;
|
|
21
22
|
outputSchema?: {
|
|
22
23
|
[x: string]: unknown;
|
|
23
24
|
type: "object";
|
|
24
25
|
properties?: {
|
|
25
|
-
[x: string]:
|
|
26
|
+
[x: string]: object;
|
|
26
27
|
} | undefined;
|
|
27
28
|
required?: string[] | undefined;
|
|
28
29
|
} | undefined;
|
|
29
30
|
annotations?: {
|
|
30
|
-
[x: string]: unknown;
|
|
31
31
|
title?: string | undefined;
|
|
32
32
|
readOnlyHint?: boolean | undefined;
|
|
33
33
|
destructiveHint?: boolean | undefined;
|
|
34
34
|
idempotentHint?: boolean | undefined;
|
|
35
35
|
openWorldHint?: boolean | undefined;
|
|
36
36
|
} | undefined;
|
|
37
|
+
execution?: {
|
|
38
|
+
taskSupport?: "optional" | "required" | "forbidden" | undefined;
|
|
39
|
+
} | undefined;
|
|
37
40
|
_meta?: {
|
|
38
41
|
[x: string]: unknown;
|
|
39
42
|
} | undefined;
|
|
43
|
+
icons?: {
|
|
44
|
+
src: string;
|
|
45
|
+
mimeType?: string | undefined;
|
|
46
|
+
sizes?: string[] | undefined;
|
|
47
|
+
theme?: "light" | "dark" | undefined;
|
|
48
|
+
}[] | undefined;
|
|
49
|
+
title?: string | undefined;
|
|
40
50
|
};
|
|
41
|
-
handler: (
|
|
51
|
+
handler: ({ reqContext, args, }: {
|
|
52
|
+
reqContext: McpRequestContext;
|
|
53
|
+
args: Record<string, unknown> | undefined;
|
|
54
|
+
}) => Promise<import("./types").ToolCallResult>;
|
|
42
55
|
};
|
|
43
56
|
export default _default;
|
|
44
57
|
//# sourceMappingURL=docs-search-tool.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs-search-tool.d.ts","sourceRoot":"","sources":["src/docs-search-tool.ts"],"names":[],"mappings":"OAEO,EAAE,
|
|
1
|
+
{"version":3,"file":"docs-search-tool.d.ts","sourceRoot":"","sources":["src/docs-search-tool.ts"],"names":[],"mappings":"OAEO,EAAE,IAAI,EAAE,MAAM,oCAAoC;OAClD,EAAE,QAAQ,EAAE,iBAAiB,EAAuB;AAG3D,eAAO,MAAM,QAAQ,EAAE,QAKtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,IA2BlB,CAAC;AAKF,eAAO,MAAM,OAAO,GAAU,uBAG3B;IACD,UAAU,EAAE,iBAAiB,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;CAC3C,8CA8CA,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAjDC;QACD,UAAU,EAAE,iBAAiB,CAAC;QAC9B,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,SAAS,CAAC;KAC3C;;AAgDD,wBAA2C"}
|
package/docs-search-tool.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.handler = exports.tool = exports.metadata = void 0;
|
|
5
|
-
const types_1 = require("./
|
|
5
|
+
const types_1 = require("./types.js");
|
|
6
|
+
const logger_1 = require("./logger.js");
|
|
6
7
|
exports.metadata = {
|
|
7
8
|
resource: 'all',
|
|
8
9
|
operation: 'read',
|
|
@@ -11,7 +12,7 @@ exports.metadata = {
|
|
|
11
12
|
};
|
|
12
13
|
exports.tool = {
|
|
13
14
|
name: 'search_docs',
|
|
14
|
-
description: 'Search
|
|
15
|
+
description: 'Search SDK documentation to find methods, parameters, and usage examples for interacting with the API. Use this before writing code when you need to discover the right approach.',
|
|
15
16
|
inputSchema: {
|
|
16
17
|
type: 'object',
|
|
17
18
|
properties: {
|
|
@@ -22,7 +23,12 @@ exports.tool = {
|
|
|
22
23
|
language: {
|
|
23
24
|
type: 'string',
|
|
24
25
|
description: 'The language for the SDK to search for.',
|
|
25
|
-
enum: ['http', 'python', 'go', 'typescript', 'terraform', 'ruby', 'java', 'kotlin'],
|
|
26
|
+
enum: ['http', 'python', 'go', 'typescript', 'javascript', 'terraform', 'ruby', 'java', 'kotlin'],
|
|
27
|
+
},
|
|
28
|
+
detail: {
|
|
29
|
+
type: 'string',
|
|
30
|
+
description: 'The amount of detail to return.',
|
|
31
|
+
enum: ['default', 'verbose'],
|
|
26
32
|
},
|
|
27
33
|
},
|
|
28
34
|
required: ['query', 'language'],
|
|
@@ -32,11 +38,36 @@ exports.tool = {
|
|
|
32
38
|
},
|
|
33
39
|
};
|
|
34
40
|
const docsSearchURL = process.env['DOCS_SEARCH_URL'] || 'https://api.stainless.com/api/projects/beeper-desktop-api/docs/search';
|
|
35
|
-
const handler = async (
|
|
41
|
+
const handler = async ({ reqContext, args, }) => {
|
|
36
42
|
const body = args;
|
|
37
43
|
const query = new URLSearchParams(body).toString();
|
|
38
|
-
const
|
|
39
|
-
|
|
44
|
+
const startTime = Date.now();
|
|
45
|
+
const result = await fetch(`${docsSearchURL}?${query}`, {
|
|
46
|
+
headers: {
|
|
47
|
+
...(reqContext.stainlessApiKey && { Authorization: reqContext.stainlessApiKey }),
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
const logger = (0, logger_1.getLogger)();
|
|
51
|
+
if (!result.ok) {
|
|
52
|
+
const errorText = await result.text();
|
|
53
|
+
logger.warn({
|
|
54
|
+
durationMs: Date.now() - startTime,
|
|
55
|
+
query: body.query,
|
|
56
|
+
status: result.status,
|
|
57
|
+
statusText: result.statusText,
|
|
58
|
+
errorText,
|
|
59
|
+
}, 'Got error response from docs search tool');
|
|
60
|
+
if (result.status === 404 && !reqContext.stainlessApiKey) {
|
|
61
|
+
throw new Error('Could not find docs for this project. You may need to provide a Stainless API key via the STAINLESS_API_KEY environment variable, the --stainless-api-key flag, or the x-stainless-api-key HTTP header.');
|
|
62
|
+
}
|
|
63
|
+
throw new Error(`${result.status}: ${result.statusText} when using doc search tool. Details: ${errorText}`);
|
|
64
|
+
}
|
|
65
|
+
const resultBody = await result.json();
|
|
66
|
+
logger.info({
|
|
67
|
+
durationMs: Date.now() - startTime,
|
|
68
|
+
query: body.query,
|
|
69
|
+
}, 'Got docs search result');
|
|
70
|
+
return (0, types_1.asTextContentResult)(resultBody);
|
|
40
71
|
};
|
|
41
72
|
exports.handler = handler;
|
|
42
73
|
exports.default = { metadata: exports.metadata, tool: exports.tool, handler: exports.handler };
|