@zavudev/sdk-mcp 0.25.0 → 0.27.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/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/{headers.mjs → auth.js} +18 -2
- package/auth.js.map +1 -0
- package/{headers.js → auth.mjs} +13 -6
- package/auth.mjs.map +1 -0
- package/code-tool-paths.cjs +6 -0
- package/code-tool-paths.cjs.map +1 -0
- package/code-tool-paths.d.cts +2 -0
- package/code-tool-paths.d.cts.map +1 -0
- package/code-tool-types.d.mts.map +1 -1
- package/code-tool-types.d.ts.map +1 -1
- package/code-tool-worker.d.mts +5 -0
- package/code-tool-worker.d.mts.map +1 -0
- package/code-tool-worker.d.ts +5 -0
- package/code-tool-worker.d.ts.map +1 -0
- package/code-tool-worker.js +301 -0
- package/code-tool-worker.js.map +1 -0
- package/code-tool-worker.mjs +296 -0
- package/code-tool-worker.mjs.map +1 -0
- package/code-tool.d.mts +8 -2
- package/code-tool.d.mts.map +1 -1
- package/code-tool.d.ts +8 -2
- package/code-tool.d.ts.map +1 -1
- package/code-tool.js +248 -42
- package/code-tool.js.map +1 -1
- package/code-tool.mjs +213 -43
- package/code-tool.mjs.map +1 -1
- package/docs-search-tool.d.mts +9 -3
- package/docs-search-tool.d.mts.map +1 -1
- package/docs-search-tool.d.ts +9 -3
- package/docs-search-tool.d.ts.map +1 -1
- package/docs-search-tool.js +6 -2
- package/docs-search-tool.js.map +1 -1
- package/docs-search-tool.mjs +6 -2
- package/docs-search-tool.mjs.map +1 -1
- package/http.d.mts +2 -2
- package/http.d.mts.map +1 -1
- package/http.d.ts +2 -2
- package/http.d.ts.map +1 -1
- package/http.js +17 -27
- package/http.js.map +1 -1
- package/http.mjs +17 -27
- package/http.mjs.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- 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 +55 -0
- package/instructions.js.map +1 -0
- package/instructions.mjs +52 -0
- package/instructions.mjs.map +1 -0
- package/methods.d.mts.map +1 -1
- package/methods.d.ts.map +1 -1
- package/methods.js +1 -0
- package/methods.js.map +1 -1
- package/methods.mjs +1 -0
- package/methods.mjs.map +1 -1
- package/options.d.mts +4 -0
- package/options.d.mts.map +1 -1
- package/options.d.ts +4 -0
- package/options.d.ts.map +1 -1
- package/options.js +22 -0
- package/options.js.map +1 -1
- package/options.mjs +22 -0
- package/options.mjs.map +1 -1
- package/package.json +49 -13
- package/server.d.mts +8 -9
- package/server.d.mts.map +1 -1
- package/server.d.ts +8 -9
- package/server.d.ts.map +1 -1
- package/server.js +73 -75
- package/server.js.map +1 -1
- package/server.mjs +72 -71
- package/server.mjs.map +1 -1
- package/src/{headers.ts → auth.ts} +16 -1
- package/src/code-tool-paths.cts +3 -0
- package/src/code-tool-types.ts +1 -0
- package/src/code-tool-worker.ts +347 -0
- package/src/code-tool.ts +287 -58
- package/src/docs-search-tool.ts +13 -4
- package/src/http.ts +24 -27
- package/src/index.ts +1 -1
- package/src/instructions.ts +74 -0
- package/src/methods.ts +2 -0
- package/src/options.ts +32 -0
- package/src/server.ts +85 -92
- package/src/stdio.ts +2 -2
- package/src/types.ts +12 -4
- package/src/util.ts +25 -0
- package/stdio.js +2 -2
- package/stdio.js.map +1 -1
- package/stdio.mjs +2 -2
- package/stdio.mjs.map +1 -1
- package/types.d.mts +8 -1
- package/types.d.mts.map +1 -1
- package/types.d.ts +8 -1
- package/types.d.ts.map +1 -1
- package/types.js.map +1 -1
- package/types.mjs.map +1 -1
- 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/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.map +0 -1
- package/headers.mjs.map +0 -1
package/server.js
CHANGED
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
5
|
};
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.
|
|
7
|
+
exports.newMcpServer = void 0;
|
|
8
8
|
exports.initMcpServer = initMcpServer;
|
|
9
9
|
exports.selectTools = selectTools;
|
|
10
10
|
exports.executeHandler = executeHandler;
|
|
@@ -13,38 +13,13 @@ const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
|
|
|
13
13
|
const sdk_1 = __importDefault(require("@zavudev/sdk"));
|
|
14
14
|
const code_tool_1 = require("./code-tool.js");
|
|
15
15
|
const docs_search_tool_1 = __importDefault(require("./docs-search-tool.js"));
|
|
16
|
+
const instructions_1 = require("./instructions.js");
|
|
16
17
|
const methods_1 = require("./methods.js");
|
|
17
|
-
async
|
|
18
|
-
// This API key is optional; providing it allows the server to fetch instructions for unreleased versions.
|
|
19
|
-
const stainlessAPIKey = (0, exports.readEnv)('STAINLESS_API_KEY');
|
|
20
|
-
const response = await fetch((0, exports.readEnv)('CODE_MODE_INSTRUCTIONS_URL') ?? 'https://api.stainless.com/api/ai/instructions/zavudev', {
|
|
21
|
-
method: 'GET',
|
|
22
|
-
headers: { ...(stainlessAPIKey && { Authorization: stainlessAPIKey }) },
|
|
23
|
-
});
|
|
24
|
-
let instructions;
|
|
25
|
-
if (!response.ok) {
|
|
26
|
-
console.warn('Warning: failed to retrieve MCP server instructions. Proceeding with default instructions...');
|
|
27
|
-
instructions = `
|
|
28
|
-
This is the zavudev MCP server. You will use Code Mode to help the user perform
|
|
29
|
-
actions. You can use search_docs tool to learn about how to take action with this server. Then,
|
|
30
|
-
you will write TypeScript code using the execute tool take action. It is CRITICAL that you be
|
|
31
|
-
thoughtful and deliberate when executing code. Always try to entirely solve the problem in code
|
|
32
|
-
block: it can be as long as you need to get the job done!
|
|
33
|
-
`;
|
|
34
|
-
}
|
|
35
|
-
instructions ??= (await response.json()).instructions;
|
|
36
|
-
instructions = `
|
|
37
|
-
The current time in Unix timestamps is ${Date.now()}.
|
|
38
|
-
|
|
39
|
-
${instructions}
|
|
40
|
-
`;
|
|
41
|
-
return instructions;
|
|
42
|
-
}
|
|
43
|
-
const newMcpServer = async () => new mcp_js_1.McpServer({
|
|
18
|
+
const newMcpServer = async (stainlessApiKey) => new mcp_js_1.McpServer({
|
|
44
19
|
name: 'zavudev_sdk_api',
|
|
45
|
-
version: '0.
|
|
20
|
+
version: '0.27.0',
|
|
46
21
|
}, {
|
|
47
|
-
instructions: await getInstructions(),
|
|
22
|
+
instructions: await (0, instructions_1.getInstructions)(stainlessApiKey),
|
|
48
23
|
capabilities: { tools: {}, logging: {} },
|
|
49
24
|
});
|
|
50
25
|
exports.newMcpServer = newMcpServer;
|
|
@@ -66,14 +41,33 @@ async function initMcpServer(params) {
|
|
|
66
41
|
warn: logAtLevel('warning'),
|
|
67
42
|
error: logAtLevel('error'),
|
|
68
43
|
};
|
|
69
|
-
let
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
44
|
+
let _client;
|
|
45
|
+
let _clientError;
|
|
46
|
+
let _logLevel;
|
|
47
|
+
const getClient = () => {
|
|
48
|
+
if (_clientError)
|
|
49
|
+
throw _clientError;
|
|
50
|
+
if (!_client) {
|
|
51
|
+
try {
|
|
52
|
+
_client = new sdk_1.default({
|
|
53
|
+
logger,
|
|
54
|
+
...params.clientOptions,
|
|
55
|
+
defaultHeaders: {
|
|
56
|
+
...params.clientOptions?.defaultHeaders,
|
|
57
|
+
'X-Stainless-MCP': 'true',
|
|
58
|
+
},
|
|
59
|
+
});
|
|
60
|
+
if (_logLevel) {
|
|
61
|
+
_client = _client.withOptions({ logLevel: _logLevel });
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
catch (e) {
|
|
65
|
+
_clientError = e instanceof Error ? e : new Error(String(e));
|
|
66
|
+
throw _clientError;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return _client;
|
|
70
|
+
};
|
|
77
71
|
const providedTools = selectTools(params.mcpOptions);
|
|
78
72
|
const toolMap = Object.fromEntries(providedTools.map((mcpTool) => [mcpTool.tool.name, mcpTool]));
|
|
79
73
|
server.setRequestHandler(types_js_1.ListToolsRequestSchema, async () => {
|
|
@@ -87,28 +81,55 @@ async function initMcpServer(params) {
|
|
|
87
81
|
if (!mcpTool) {
|
|
88
82
|
throw new Error(`Unknown tool: ${name}`);
|
|
89
83
|
}
|
|
90
|
-
|
|
84
|
+
let client;
|
|
85
|
+
try {
|
|
86
|
+
client = getClient();
|
|
87
|
+
}
|
|
88
|
+
catch (error) {
|
|
89
|
+
return {
|
|
90
|
+
content: [
|
|
91
|
+
{
|
|
92
|
+
type: 'text',
|
|
93
|
+
text: `Failed to initialize client: ${error instanceof Error ? error.message : String(error)}`,
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
isError: true,
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
return executeHandler({
|
|
100
|
+
handler: mcpTool.handler,
|
|
101
|
+
reqContext: {
|
|
102
|
+
client,
|
|
103
|
+
stainlessApiKey: params.stainlessApiKey ?? params.mcpOptions?.stainlessApiKey,
|
|
104
|
+
},
|
|
105
|
+
args,
|
|
106
|
+
});
|
|
91
107
|
});
|
|
92
108
|
server.setRequestHandler(types_js_1.SetLevelRequestSchema, async (request) => {
|
|
93
109
|
const { level } = request.params;
|
|
110
|
+
let logLevel;
|
|
94
111
|
switch (level) {
|
|
95
112
|
case 'debug':
|
|
96
|
-
|
|
113
|
+
logLevel = 'debug';
|
|
97
114
|
break;
|
|
98
115
|
case 'info':
|
|
99
|
-
|
|
116
|
+
logLevel = 'info';
|
|
100
117
|
break;
|
|
101
118
|
case 'notice':
|
|
102
119
|
case 'warning':
|
|
103
|
-
|
|
120
|
+
logLevel = 'warn';
|
|
104
121
|
break;
|
|
105
122
|
case 'error':
|
|
106
|
-
|
|
123
|
+
logLevel = 'error';
|
|
107
124
|
break;
|
|
108
125
|
default:
|
|
109
|
-
|
|
126
|
+
logLevel = 'off';
|
|
110
127
|
break;
|
|
111
128
|
}
|
|
129
|
+
_logLevel = logLevel;
|
|
130
|
+
if (_client) {
|
|
131
|
+
_client = _client.withOptions({ logLevel });
|
|
132
|
+
}
|
|
112
133
|
return {};
|
|
113
134
|
});
|
|
114
135
|
}
|
|
@@ -116,11 +137,13 @@ async function initMcpServer(params) {
|
|
|
116
137
|
* Selects the tools to include in the MCP Server based on the provided options.
|
|
117
138
|
*/
|
|
118
139
|
function selectTools(options) {
|
|
119
|
-
const includedTools = [
|
|
120
|
-
|
|
140
|
+
const includedTools = [];
|
|
141
|
+
if (options?.includeCodeTool ?? true) {
|
|
142
|
+
includedTools.push((0, code_tool_1.codeTool)({
|
|
121
143
|
blockedMethods: (0, methods_1.blockedMethodsForCodeTool)(options),
|
|
122
|
-
|
|
123
|
-
|
|
144
|
+
codeExecutionMode: options?.codeExecutionMode ?? 'stainless-sandbox',
|
|
145
|
+
}));
|
|
146
|
+
}
|
|
124
147
|
if (options?.includeDocsTools ?? true) {
|
|
125
148
|
includedTools.push(docs_search_tool_1.default);
|
|
126
149
|
}
|
|
@@ -129,32 +152,7 @@ function selectTools(options) {
|
|
|
129
152
|
/**
|
|
130
153
|
* Runs the provided handler with the given client and arguments.
|
|
131
154
|
*/
|
|
132
|
-
async function executeHandler(handler,
|
|
133
|
-
return await handler(
|
|
155
|
+
async function executeHandler({ handler, reqContext, args, }) {
|
|
156
|
+
return await handler({ reqContext, args: args || {} });
|
|
134
157
|
}
|
|
135
|
-
const readEnv = (env) => {
|
|
136
|
-
if (typeof globalThis.process !== 'undefined') {
|
|
137
|
-
return globalThis.process.env?.[env]?.trim();
|
|
138
|
-
}
|
|
139
|
-
else if (typeof globalThis.Deno !== 'undefined') {
|
|
140
|
-
return globalThis.Deno.env?.get?.(env)?.trim();
|
|
141
|
-
}
|
|
142
|
-
return;
|
|
143
|
-
};
|
|
144
|
-
exports.readEnv = readEnv;
|
|
145
|
-
const readEnvOrError = (env) => {
|
|
146
|
-
let envValue = (0, exports.readEnv)(env);
|
|
147
|
-
if (envValue === undefined) {
|
|
148
|
-
throw new Error(`Environment variable ${env} is not set`);
|
|
149
|
-
}
|
|
150
|
-
return envValue;
|
|
151
|
-
};
|
|
152
|
-
exports.readEnvOrError = readEnvOrError;
|
|
153
|
-
const requireValue = (value, description) => {
|
|
154
|
-
if (value === undefined) {
|
|
155
|
-
throw new Error(`Missing required value: ${description}`);
|
|
156
|
-
}
|
|
157
|
-
return value;
|
|
158
|
-
};
|
|
159
|
-
exports.requireValue = requireValue;
|
|
160
158
|
//# sourceMappingURL=server.js.map
|
package/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;;;
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"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"}
|
package/server.mjs
CHANGED
|
@@ -4,38 +4,13 @@ import { CallToolRequestSchema, ListToolsRequestSchema, SetLevelRequestSchema, }
|
|
|
4
4
|
import Zavudev from '@zavudev/sdk';
|
|
5
5
|
import { codeTool } from "./code-tool.mjs";
|
|
6
6
|
import docsSearchTool from "./docs-search-tool.mjs";
|
|
7
|
+
import { getInstructions } from "./instructions.mjs";
|
|
7
8
|
import { blockedMethodsForCodeTool } from "./methods.mjs";
|
|
8
|
-
async
|
|
9
|
-
// This API key is optional; providing it allows the server to fetch instructions for unreleased versions.
|
|
10
|
-
const stainlessAPIKey = readEnv('STAINLESS_API_KEY');
|
|
11
|
-
const response = await fetch(readEnv('CODE_MODE_INSTRUCTIONS_URL') ?? 'https://api.stainless.com/api/ai/instructions/zavudev', {
|
|
12
|
-
method: 'GET',
|
|
13
|
-
headers: { ...(stainlessAPIKey && { Authorization: stainlessAPIKey }) },
|
|
14
|
-
});
|
|
15
|
-
let instructions;
|
|
16
|
-
if (!response.ok) {
|
|
17
|
-
console.warn('Warning: failed to retrieve MCP server instructions. Proceeding with default instructions...');
|
|
18
|
-
instructions = `
|
|
19
|
-
This is the zavudev MCP server. You will use Code Mode to help the user perform
|
|
20
|
-
actions. You can use search_docs tool to learn about how to take action with this server. Then,
|
|
21
|
-
you will write TypeScript code using the execute tool take action. It is CRITICAL that you be
|
|
22
|
-
thoughtful and deliberate when executing code. Always try to entirely solve the problem in code
|
|
23
|
-
block: it can be as long as you need to get the job done!
|
|
24
|
-
`;
|
|
25
|
-
}
|
|
26
|
-
instructions ??= (await response.json()).instructions;
|
|
27
|
-
instructions = `
|
|
28
|
-
The current time in Unix timestamps is ${Date.now()}.
|
|
29
|
-
|
|
30
|
-
${instructions}
|
|
31
|
-
`;
|
|
32
|
-
return instructions;
|
|
33
|
-
}
|
|
34
|
-
export const newMcpServer = async () => new McpServer({
|
|
9
|
+
export const newMcpServer = async (stainlessApiKey) => new McpServer({
|
|
35
10
|
name: 'zavudev_sdk_api',
|
|
36
|
-
version: '0.
|
|
11
|
+
version: '0.27.0',
|
|
37
12
|
}, {
|
|
38
|
-
instructions: await getInstructions(),
|
|
13
|
+
instructions: await getInstructions(stainlessApiKey),
|
|
39
14
|
capabilities: { tools: {}, logging: {} },
|
|
40
15
|
});
|
|
41
16
|
/**
|
|
@@ -56,14 +31,33 @@ export async function initMcpServer(params) {
|
|
|
56
31
|
warn: logAtLevel('warning'),
|
|
57
32
|
error: logAtLevel('error'),
|
|
58
33
|
};
|
|
59
|
-
let
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
34
|
+
let _client;
|
|
35
|
+
let _clientError;
|
|
36
|
+
let _logLevel;
|
|
37
|
+
const getClient = () => {
|
|
38
|
+
if (_clientError)
|
|
39
|
+
throw _clientError;
|
|
40
|
+
if (!_client) {
|
|
41
|
+
try {
|
|
42
|
+
_client = new Zavudev({
|
|
43
|
+
logger,
|
|
44
|
+
...params.clientOptions,
|
|
45
|
+
defaultHeaders: {
|
|
46
|
+
...params.clientOptions?.defaultHeaders,
|
|
47
|
+
'X-Stainless-MCP': 'true',
|
|
48
|
+
},
|
|
49
|
+
});
|
|
50
|
+
if (_logLevel) {
|
|
51
|
+
_client = _client.withOptions({ logLevel: _logLevel });
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
catch (e) {
|
|
55
|
+
_clientError = e instanceof Error ? e : new Error(String(e));
|
|
56
|
+
throw _clientError;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return _client;
|
|
60
|
+
};
|
|
67
61
|
const providedTools = selectTools(params.mcpOptions);
|
|
68
62
|
const toolMap = Object.fromEntries(providedTools.map((mcpTool) => [mcpTool.tool.name, mcpTool]));
|
|
69
63
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
@@ -77,28 +71,55 @@ export async function initMcpServer(params) {
|
|
|
77
71
|
if (!mcpTool) {
|
|
78
72
|
throw new Error(`Unknown tool: ${name}`);
|
|
79
73
|
}
|
|
80
|
-
|
|
74
|
+
let client;
|
|
75
|
+
try {
|
|
76
|
+
client = getClient();
|
|
77
|
+
}
|
|
78
|
+
catch (error) {
|
|
79
|
+
return {
|
|
80
|
+
content: [
|
|
81
|
+
{
|
|
82
|
+
type: 'text',
|
|
83
|
+
text: `Failed to initialize client: ${error instanceof Error ? error.message : String(error)}`,
|
|
84
|
+
},
|
|
85
|
+
],
|
|
86
|
+
isError: true,
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
return executeHandler({
|
|
90
|
+
handler: mcpTool.handler,
|
|
91
|
+
reqContext: {
|
|
92
|
+
client,
|
|
93
|
+
stainlessApiKey: params.stainlessApiKey ?? params.mcpOptions?.stainlessApiKey,
|
|
94
|
+
},
|
|
95
|
+
args,
|
|
96
|
+
});
|
|
81
97
|
});
|
|
82
98
|
server.setRequestHandler(SetLevelRequestSchema, async (request) => {
|
|
83
99
|
const { level } = request.params;
|
|
100
|
+
let logLevel;
|
|
84
101
|
switch (level) {
|
|
85
102
|
case 'debug':
|
|
86
|
-
|
|
103
|
+
logLevel = 'debug';
|
|
87
104
|
break;
|
|
88
105
|
case 'info':
|
|
89
|
-
|
|
106
|
+
logLevel = 'info';
|
|
90
107
|
break;
|
|
91
108
|
case 'notice':
|
|
92
109
|
case 'warning':
|
|
93
|
-
|
|
110
|
+
logLevel = 'warn';
|
|
94
111
|
break;
|
|
95
112
|
case 'error':
|
|
96
|
-
|
|
113
|
+
logLevel = 'error';
|
|
97
114
|
break;
|
|
98
115
|
default:
|
|
99
|
-
|
|
116
|
+
logLevel = 'off';
|
|
100
117
|
break;
|
|
101
118
|
}
|
|
119
|
+
_logLevel = logLevel;
|
|
120
|
+
if (_client) {
|
|
121
|
+
_client = _client.withOptions({ logLevel });
|
|
122
|
+
}
|
|
102
123
|
return {};
|
|
103
124
|
});
|
|
104
125
|
}
|
|
@@ -106,11 +127,13 @@ export async function initMcpServer(params) {
|
|
|
106
127
|
* Selects the tools to include in the MCP Server based on the provided options.
|
|
107
128
|
*/
|
|
108
129
|
export function selectTools(options) {
|
|
109
|
-
const includedTools = [
|
|
110
|
-
|
|
130
|
+
const includedTools = [];
|
|
131
|
+
if (options?.includeCodeTool ?? true) {
|
|
132
|
+
includedTools.push(codeTool({
|
|
111
133
|
blockedMethods: blockedMethodsForCodeTool(options),
|
|
112
|
-
|
|
113
|
-
|
|
134
|
+
codeExecutionMode: options?.codeExecutionMode ?? 'stainless-sandbox',
|
|
135
|
+
}));
|
|
136
|
+
}
|
|
114
137
|
if (options?.includeDocsTools ?? true) {
|
|
115
138
|
includedTools.push(docsSearchTool);
|
|
116
139
|
}
|
|
@@ -119,29 +142,7 @@ export function selectTools(options) {
|
|
|
119
142
|
/**
|
|
120
143
|
* Runs the provided handler with the given client and arguments.
|
|
121
144
|
*/
|
|
122
|
-
export async function executeHandler(handler,
|
|
123
|
-
return await handler(
|
|
145
|
+
export async function executeHandler({ handler, reqContext, args, }) {
|
|
146
|
+
return await handler({ reqContext, args: args || {} });
|
|
124
147
|
}
|
|
125
|
-
export const readEnv = (env) => {
|
|
126
|
-
if (typeof globalThis.process !== 'undefined') {
|
|
127
|
-
return globalThis.process.env?.[env]?.trim();
|
|
128
|
-
}
|
|
129
|
-
else if (typeof globalThis.Deno !== 'undefined') {
|
|
130
|
-
return globalThis.Deno.env?.get?.(env)?.trim();
|
|
131
|
-
}
|
|
132
|
-
return;
|
|
133
|
-
};
|
|
134
|
-
export const readEnvOrError = (env) => {
|
|
135
|
-
let envValue = readEnv(env);
|
|
136
|
-
if (envValue === undefined) {
|
|
137
|
-
throw new Error(`Environment variable ${env} is not set`);
|
|
138
|
-
}
|
|
139
|
-
return envValue;
|
|
140
|
-
};
|
|
141
|
-
export const requireValue = (value, description) => {
|
|
142
|
-
if (value === undefined) {
|
|
143
|
-
throw new Error(`Missing required value: ${description}`);
|
|
144
|
-
}
|
|
145
|
-
return value;
|
|
146
|
-
};
|
|
147
148
|
//# sourceMappingURL=server.mjs.map
|
package/server.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.mjs","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAG/E,EAAE,SAAS,EAAE,MAAM,yCAAyC;OAC5D,EACL,qBAAqB,EACrB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,oCAAoC;OAEpC,OAAO,MAAM,cAAc;OAC3B,EAAE,QAAQ,EAAE;OACZ,cAAc;
|
|
1
|
+
{"version":3,"file":"server.mjs","sourceRoot":"","sources":["src/server.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
import { IncomingMessage } from 'node:http';
|
|
4
4
|
import { ClientOptions } from '@zavudev/sdk';
|
|
5
|
+
import { McpOptions } from './options';
|
|
5
6
|
|
|
6
|
-
export const
|
|
7
|
+
export const parseClientAuthHeaders = (req: IncomingMessage, required?: boolean): Partial<ClientOptions> => {
|
|
7
8
|
if (req.headers.authorization) {
|
|
8
9
|
const scheme = req.headers.authorization.split(' ')[0]!;
|
|
9
10
|
const value = req.headers.authorization.slice(scheme.length + 1);
|
|
@@ -25,3 +26,17 @@ export const parseAuthHeaders = (req: IncomingMessage, required?: boolean): Part
|
|
|
25
26
|
: req.headers['x-zavudev-api-key'];
|
|
26
27
|
return { apiKey };
|
|
27
28
|
};
|
|
29
|
+
|
|
30
|
+
export const getStainlessApiKey = (req: IncomingMessage, mcpOptions: McpOptions): string | undefined => {
|
|
31
|
+
// Try to get the key from the x-stainless-api-key header
|
|
32
|
+
const headerKey =
|
|
33
|
+
Array.isArray(req.headers['x-stainless-api-key']) ?
|
|
34
|
+
req.headers['x-stainless-api-key'][0]
|
|
35
|
+
: req.headers['x-stainless-api-key'];
|
|
36
|
+
if (headerKey && typeof headerKey === 'string') {
|
|
37
|
+
return headerKey;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Fall back to value set in the mcpOptions (e.g. from environment variable), if provided
|
|
41
|
+
return mcpOptions.stainlessApiKey;
|
|
42
|
+
};
|