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();