Files
openclaw/src/config/types.mcp.ts
2026-03-30 07:22:36 +09:00

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>;
};