@builder.io/dev-tools 1.21.5-dev.202601211649.cf56645f8 → 1.21.6-dev.202601211930.10e037ddf
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/cli/index.cjs +23 -32
- package/cli/index.cjs.map +3 -3
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/mcp-local.d.ts +2 -2
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/mcp-local.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export interface LocalMCPClientManager {
|
|
|
73
73
|
/**
|
|
74
74
|
* Create a local MCP client manager from server definitions
|
|
75
75
|
*/
|
|
76
|
-
export declare function createLocalMCPClientManager(servers: MCPServerDefinition[], sys: DevToolsSys, workingDirectory: string,
|
|
76
|
+
export declare function createLocalMCPClientManager(servers: MCPServerDefinition[], sys: DevToolsSys, workingDirectory: string, signal?: AbortSignal): Promise<LocalMCPClientManager>;
|
|
77
77
|
/**
|
|
78
78
|
* Apply environment variable substitution to MCP server configuration
|
|
79
79
|
* This is separated from loadMCPConfig to allow easy unit testing
|
|
@@ -90,4 +90,4 @@ export declare function applyEnvSubstitutionRemote(serverConfig: Omit<MCPServerR
|
|
|
90
90
|
* If a server with the same name exists in both, fusionConfig takes precedence
|
|
91
91
|
* Supports both stdio (command-based) and remote (http/sse) server definitions
|
|
92
92
|
*/
|
|
93
|
-
export declare function loadMCPConfig(sys: DevToolsSys, workingDirectory: string, serverConfigs: MCPServerConfig, autoImportLocalMCPs: boolean
|
|
93
|
+
export declare function loadMCPConfig(sys: DevToolsSys, workingDirectory: string, serverConfigs: MCPServerConfig, autoImportLocalMCPs: boolean): Promise<MCPServerDefinition[]>;
|