We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee059a1 commit 598f62fCopy full SHA for 598f62f
src/eca/features/mcp.clj
@@ -39,7 +39,8 @@
39
(defn initialize! [{:keys [on-error]} db* config]
40
(doseq [[name server-config] (:mcpServers config)]
41
(try
42
- (when-not (get-in @db* [:mcp-clients name])
+ (when-not (and (get-in @db* [:mcp-clients name])
43
+ (get server-config :disabled false))
44
(let [transport (->transport server-config)
45
client (->client transport config)]
46
(swap! db* assoc-in [:mcp-clients name :client] client)
0 commit comments