Coder Toolbox
Summary
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.
Available Actions(6)
get_test_execution_logs
Retrieve test execution logs from the log directory.
locate_java_class
Find Java classes in project source code. Parameters: className (string), sourceType (optional string), packagePath (optional string). Returns: JSON object with search results including file path and content if found.
create_java_class
Create new Java classes with proper package structure. Parameters: className (string), sourceType (string), packagePath (string). Returns: JSON object with creation results including file path or error message.
class_add_body
Add content to existing Java classes. Parameters: class name details from locate_java_class, classBody (string). Returns: JSON object with modification results including file path.
class_replace_body
Replace content in existing Java classes. Parameters: class name details from locate_java_class, edits (array of edit operations), dryRun (optional boolean). Returns: Diff showing the changes made or preview.
class_delete_body
Delete content from existing Java classes. Parameters: class name details from locate_java_class, targetContent (string), dryRun (optional boolean). Returns: Diff showing the changes made or preview.
社区评论
暂无评论. 成为第一个评论的人!
登录以参与讨论