fix(plugin): added temporary noop for resources list

This commit is contained in:
Brydon DeWitt 2026-06-06 21:28:40 -04:00
parent 83f456f25b
commit 1385c0765a

View File

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