From 1385c0765a3e68ca1f1eabdc6e0069a9a12aa3f1 Mon Sep 17 00:00:00 2001 From: Brydon DeWitt Date: Sat, 6 Jun 2026 21:28:40 -0400 Subject: [PATCH] fix(plugin): added temporary noop for resources list --- .agents/mcp/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.agents/mcp/index.ts b/.agents/mcp/index.ts index 7811968..ef0e043 100644 --- a/.agents/mcp/index.ts +++ b/.agents/mcp/index.ts @@ -176,6 +176,17 @@ for (const file of skillFiles) { })); } +// ── Resources (no-op to satisfy resources/list) ────────────────────────────── + +server.registerResource( + "noop", + "noop://noop", + { description: "No-op resource (satisfies resources/list)" }, + () => ({ + contents: [{ uri: "noop://noop", mimeType: "text/plain", text: "" }], + }), +); + // ── Connect ─────────────────────────────────────────────────────────────────── const transport = new StdioServerTransport();