mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-31 03:41:51 +00:00
* 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
15 lines
346 B
TypeScript
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>;
|
|
};
|