File tree Expand file tree Collapse file tree 8 files changed +5
-106
lines changed
test/clojure_mcp/tools/think Expand file tree Collapse file tree 8 files changed +5
-106
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,6 @@ Agents can potentially access all MCP tools:
8080| ` :read_file ` | Read file contents with pattern matching |
8181| ` :grep ` | Search file contents |
8282| ` :glob_files ` | Find files by pattern |
83- | ` :think ` | Reasoning tool |
8483| ` :clojure_inspect_project ` | Project structure analysis |
8584
8685### Evaluation Tools
Original file line number Diff line number Diff line change @@ -95,7 +95,6 @@ Maybe you want a read-only server for safer exploration:
9595 [clojure-mcp.tools.unified-read-file.tool :as unified-read-file-tool]
9696 [clojure-mcp.tools.grep.tool :as new-grep-tool]
9797 [clojure-mcp.tools.glob-files.tool :as glob-files-tool]
98- [clojure-mcp.tools.think.tool :as think-tool]
9998 [clojure-mcp.tools.eval.tool :as eval-tool]
10099 [clojure-mcp.tools.project.tool :as project-tool]))
101100
@@ -105,7 +104,6 @@ Maybe you want a read-only server for safer exploration:
105104 (unified-read-file-tool/unified-read-file-tool nrepl-client-atom)
106105 (new-grep-tool/grep-tool nrepl-client-atom)
107106 (glob-files-tool/glob-files-tool nrepl-client-atom)
108- (think-tool/think-tool nrepl-client-atom)
109107 (eval-tool/eval-code nrepl-client-atom)
110108 (project-tool/inspect-project-tool nrepl-client-atom)])
111109
Original file line number Diff line number Diff line change 1818 ; ; :enable-tools [:clojure-eval]
1919
2020 ; ; Option 4: Read-only exploration (no file writes or code execution)
21- ; ; :enable-tools [:read-file :grep :glob-files :LS :clojure-inspect-project :think ]
21+ ; ; :enable-tools [:read-file :grep :glob-files :LS :clojure-inspect-project]
2222
2323 ; ; ===================
2424 ; ; PROMPTS FILTERING
5858
5959 ; ; Example 2: Read-Only Code Review Server
6060 ; ; Uncomment this entire block for read-only exploration:
61- #_{:enable-tools [:read-file :grep :glob-files :LS :clojure-inspect-project :think ]
61+ #_{:enable-tools [:read-file :grep :glob-files :LS :clojure-inspect-project ]
6262 :enable-prompts [" clojure_repl_system_prompt" ]
6363 :enable-resources [" PROJECT_SUMMARY.md" " README.md" ]}
6464
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ Be concise and clear in your explanations."
1919 :enable-tools [:read_file
2020 :grep
2121 :glob_files
22- :clojure_inspect_project
23- :think ]
22+ :clojure_inspect_project ]
2423
2524 ; ; Memory configuration
2625 ; ; false = stateless (each invocation is independent)
Original file line number Diff line number Diff line change 99 'clojure-mcp.tools.unified-read-file.tool/unified-read-file-tool
1010 'clojure-mcp.tools.grep.tool/grep-tool
1111 'clojure-mcp.tools.glob-files.tool/glob-files-tool
12- 'clojure-mcp.tools.think.tool/think-tool
1312 'clojure-mcp.tools.project.tool/inspect-project-tool])
1413
1514(def eval-tool-syms
Original file line number Diff line number Diff line change 1212 :description (slurp (io/resource " clojure_mcp/tools/dispatch_agent/description.md" ))
1313 :system-message (slurp (io/resource " clojure_mcp/tools/dispatch_agent/system_message.md" ))
1414 :context true ; Uses default code index and project summary
15- :enable-tools [:LS :read_file :grep :glob_files :think : clojure_inspect_project ]
15+ :enable-tools [:LS :read_file :grep :glob_files :clojure_inspect_project ]
1616 :memory-size 100 })
1717
1818(defn architect-config
2323 :description (slurp (io/resource " clojure_mcp/tools/architect/description.md" ))
2424 :system-message (slurp (io/resource " clojure_mcp/tools/architect/system_message.md" ))
2525 :context false ; No default context
26- :enable-tools [:LS :read_file :grep :glob_files :clojure_inspect_project :think ]
26+ :enable-tools [:LS :read_file :grep :glob_files :clojure_inspect_project ]
2727 :memory-size 100 })
2828
2929(defn code-critique-config
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments