@evolvingmachines/sdk 0.0.23 → 0.0.25
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/dist/index.cjs +48 -50
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +48 -50
- package/package.json +10 -6
package/dist/index.d.cts
CHANGED
|
@@ -2424,13 +2424,14 @@ declare function getMcpSettingsDir(agentType: AgentType): string;
|
|
|
2424
2424
|
/**
|
|
2425
2425
|
* MCP JSON Configuration Writer
|
|
2426
2426
|
*
|
|
2427
|
-
* Handles MCP config for Claude, Gemini, and
|
|
2427
|
+
* Handles MCP config for Claude, Gemini, Qwen, and Kimi agents.
|
|
2428
2428
|
* Uses registry for paths - no hardcoded values.
|
|
2429
2429
|
*
|
|
2430
2430
|
* Transport formats by agent:
|
|
2431
2431
|
* - Claude: { type: "http"|"sse"|"stdio", url: "..." }
|
|
2432
2432
|
* - Gemini: { url: "...", type: "http"|"sse" } | { command: "..." }
|
|
2433
2433
|
* - Qwen: { httpUrl: "..." } | { url: "..." } | { command: "..." }
|
|
2434
|
+
* - Kimi: { url: "...", transport?: "http"|"sse" } | { command: "...", transport: "stdio" }
|
|
2434
2435
|
*/
|
|
2435
2436
|
|
|
2436
2437
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2424,13 +2424,14 @@ declare function getMcpSettingsDir(agentType: AgentType): string;
|
|
|
2424
2424
|
/**
|
|
2425
2425
|
* MCP JSON Configuration Writer
|
|
2426
2426
|
*
|
|
2427
|
-
* Handles MCP config for Claude, Gemini, and
|
|
2427
|
+
* Handles MCP config for Claude, Gemini, Qwen, and Kimi agents.
|
|
2428
2428
|
* Uses registry for paths - no hardcoded values.
|
|
2429
2429
|
*
|
|
2430
2430
|
* Transport formats by agent:
|
|
2431
2431
|
* - Claude: { type: "http"|"sse"|"stdio", url: "..." }
|
|
2432
2432
|
* - Gemini: { url: "...", type: "http"|"sse" } | { command: "..." }
|
|
2433
2433
|
* - Qwen: { httpUrl: "..." } | { url: "..." } | { command: "..." }
|
|
2434
|
+
* - Kimi: { url: "...", transport?: "http"|"sse" } | { command: "...", transport: "stdio" }
|
|
2434
2435
|
*/
|
|
2435
2436
|
|
|
2436
2437
|
/**
|