mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-17 04:01:05 +00:00
27 lines
961 B
TypeScript
27 lines
961 B
TypeScript
export type McpServerConfig = {
|
|
/** Stdio transport: command to spawn. */
|
|
command?: string;
|
|
/** Stdio transport: arguments for the command. */
|
|
args?: string[];
|
|
/** Environment variables passed to the server process (stdio only). */
|
|
env?: Record<string, string | number | boolean>;
|
|
/** Working directory for stdio server. */
|
|
cwd?: string;
|
|
/** Alias for cwd. */
|
|
workingDirectory?: string;
|
|
/** HTTP transport: URL of the remote MCP server (http or https). */
|
|
url?: string;
|
|
/** HTTP transport type for remote MCP servers. */
|
|
transport?: "sse" | "streamable-http";
|
|
/** HTTP transport: extra HTTP headers sent with every request. */
|
|
headers?: Record<string, string | number | boolean>;
|
|
/** Optional connection timeout in milliseconds. */
|
|
connectionTimeoutMs?: number;
|
|
[key: string]: unknown;
|
|
};
|
|
|
|
export type McpConfig = {
|
|
/** Named MCP server definitions managed by OpenClaw. */
|
|
servers?: Record<string, McpServerConfig>;
|
|
};
|