fix(plugin): added temporary noop for resources list
This commit is contained in:
parent
83f456f25b
commit
1385c0765a
@ -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();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user