From 48dcb9c5a5af5c8df2bcf4d7caf34611efe07ab5 Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Sun, 8 Mar 2026 22:50:34 +0100 Subject: [PATCH] remove limit 2000 from backend call --- src/cli/mcp.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/mcp.clj b/src/cli/mcp.clj index 8b3a13e..6de2fce 100644 --- a/src/cli/mcp.clj +++ b/src/cli/mcp.clj @@ -34,7 +34,7 @@ ;; interact with backend api (defn fetch-snippets [] - (let [res (http/get (str (:backend-host config) "/api/snippets?limit=2000"))] + (let [res (http/get (str (:backend-host config) "/api/snippets"))] (json/parse-string (:body res) true))) (defn fetch-snippet [id]