qlogicagent 2.17.1 → 2.17.3
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.
|
@@ -114,6 +114,7 @@ export interface AcpInitializeResult {
|
|
|
114
114
|
mcpCapabilities?: {
|
|
115
115
|
http?: boolean;
|
|
116
116
|
sse?: boolean;
|
|
117
|
+
stdio?: boolean;
|
|
117
118
|
};
|
|
118
119
|
promptCapabilities?: {
|
|
119
120
|
audio?: boolean;
|
|
@@ -166,11 +167,15 @@ export interface AcpUsageUpdatePayload {
|
|
|
166
167
|
totalTokens?: number;
|
|
167
168
|
}
|
|
168
169
|
/** MCP server config to inject into ACP session/new. */
|
|
170
|
+
export interface McpServerEnvEntry {
|
|
171
|
+
name: string;
|
|
172
|
+
value: string;
|
|
173
|
+
}
|
|
169
174
|
export interface McpServerConfig {
|
|
170
175
|
name: string;
|
|
171
176
|
command: string;
|
|
172
177
|
args: string[];
|
|
173
|
-
env?:
|
|
178
|
+
env?: McpServerEnvEntry[];
|
|
174
179
|
}
|
|
175
180
|
export interface AgentsScanParams {
|
|
176
181
|
force?: boolean;
|
|
@@ -140,6 +140,10 @@ export interface AcpSessionNewParams {
|
|
|
140
140
|
uri?: string;
|
|
141
141
|
command?: string;
|
|
142
142
|
args?: string[];
|
|
143
|
+
env?: Array<{
|
|
144
|
+
name: string;
|
|
145
|
+
value: string;
|
|
146
|
+
}>;
|
|
143
147
|
}>;
|
|
144
148
|
/** Optional session ID (host-assigned). If omitted, agent generates one. */
|
|
145
149
|
sessionId?: string;
|