Files
openclaw/src/config/types.mcp.ts
Vincent Koc 06459ca0df Agents: run bundle MCP tools in embedded Pi (#48611)
* Agents: run bundle MCP tools in embedded Pi

* Plugins: fix bundle MCP path resolution

* Plugins: warn on unsupported bundle MCP transports

* Commands: add embedded Pi MCP management

* Config: move MCP management to top-level config
2026-03-16 21:46:05 -07:00

15 lines
346 B
TypeScript

export type McpServerConfig = {
command?: string;
args?: string[];
env?: Record<string, string | number | boolean>;
cwd?: string;
workingDirectory?: string;
url?: string;
[key: string]: unknown;
};
export type McpConfig = {
/** Named MCP server definitions managed by OpenClaw. */
servers?: Record<string, McpServerConfig>;
};