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
This commit is contained in:
Vincent Koc
2026-03-16 21:46:05 -07:00
committed by GitHub
parent 38bc364aed
commit 06459ca0df
37 changed files with 2051 additions and 30 deletions

View File

@@ -160,6 +160,19 @@ const coreEntries: CoreCliEntry[] = [
mod.registerMemoryCli(program);
},
},
{
commands: [
{
name: "mcp",
description: "Manage embedded Pi MCP servers",
hasSubcommands: true,
},
],
register: async ({ program }) => {
const mod = await import("../mcp-cli.js");
mod.registerMcpCli(program);
},
},
{
commands: [
{