This Coder Toolbox MCP server, developed by lamemind, enhances AI-assisted software development workflows. It provides a set of tools for code analysis, manipulation, and testing, focusing on Java class operations and test execution log retrieval. The server offers functionalities such as locating and creating Java classes, managing class content and structure, and accessing test results. By abstracting complex file operations and providing a programmatic interface, it enables AI assistants to perform code-related tasks efficiently. This implementation is particularly useful for automated code review systems, intelligent IDE assistants, or any AI application that needs to interact with Java codebases and test environments programmatically.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Retrieve test execution logs from the log directory
Find Java classes in project source code. Parameters: className (string), sourceType (optional string), packagePath (optional string)
Create new Java classes with proper package structure. Parameters: className (string), sourceType (string), packagePath (string)
Add content to existing Java classes. Parameters: className (string), sourceType (string), packagePath (string), classBody (string)
Replace content in existing Java classes. Parameters: className (string), sourceType (string), packagePath (string), edits (array), dryRun (optional boolean)
Delete content from existing Java classes. Parameters: className (string), sourceType (string), packagePath (string), targetContent (string), dryRun (optional boolean)