aeecc016 by Ean Schuessler

Reframe mcp.sh section as community tool gap - ask what CLI exists for LLM+Java testing

1 parent e86c9c0d
Showing 1 changed file with 15 additions and 9 deletions
...@@ -279,17 +279,23 @@ tail -f ./moqui.log ...@@ -279,17 +279,23 @@ tail -f ./moqui.log
279 ./mcp.sh call <tool-name> 279 ./mcp.sh call <tool-name>
280 ``` 280 ```
281 281
282 ## MCP Client Script 282 ## 🤔 **Community Tool Gap**
283 283
284 The `mcp.sh` script provides a command-line interface for testing: 284 **What CLI tool should we use for LLM + Java testing?**
285 285
286 ```bash 286 Currently using improvised `mcp.sh` script for basic MCP testing. But there should be a mature tool that handles:
287 ./mcp.sh --help # Show help 287
288 ./mcp.sh --new-session # Create fresh session 288 - **LLM Interaction**: Chat with AI models via MCP
289 ./mcp.sh --clear-session # Clear stored session 289 - **Java Testing**: Full lifecycle test generation
290 ./mcp.sh --limit 10 tools # Show first 10 tools 290 - **Code Generation**: AI writes code, tests validate it
291 ./mcp.sh status # Show server status 291 - **Iterative Development**: Test → Generate → Refine loop
292 ``` 292
293 **Ideas welcome!** What tools are you using for:
294 - LLM + Java development workflows?
295 - Automated test-driven code generation?
296 - MCP client development?
297
298 *The `mcp.sh` script works for basic testing, but we need a proper development ecosystem.*
293 299
294 ## API Reference 300 ## API Reference
295 301
......