diff options
| author | Baitazar <156776980+hametovbr@users.noreply.github.com> | 2025-07-04 11:24:07 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-04 09:24:07 +0100 |
| commit | 6cc249d141ec18e90981b095f94e46a8b6e4faef (patch) | |
| tree | 196ae68a9e1461c678be4c919f463aaa0b5738a6 /apps | |
| parent | 7febebe1cd684fcf90beba3dae9f807fc8fc46a3 (diff) | |
| download | karakeep-6cc249d141ec18e90981b095f94e46a8b6e4faef.tar.zst | |
fix(mcp): add empty params object (#1697)
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/mcp/src/lists.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/mcp/src/lists.ts b/apps/mcp/src/lists.ts index 0779c86e..15abf483 100644 --- a/apps/mcp/src/lists.ts +++ b/apps/mcp/src/lists.ts @@ -8,7 +8,9 @@ mcpServer.tool( "get-lists", `Retrieves a list of lists.`, async (): Promise<CallToolResult> => { - const res = await karakeepClient.GET("/lists"); + const res = await karakeepClient.GET("/lists", { + params: {}, + }); if (!res.data) { return toMcpToolError(res.error); } |
