A short description of your project.
Project description
multi-functional MCP-devtools server over SSE
🌸 リードミー 🏮 读我
https://github.com/user-attachments/assets/d0b7b41b-c420-4b84-8807-d8a00300bd3e
- 🔧
mcp-devtoolsoffers a comprehensive suite of software development tools: ℹ️ Available Tools- 🤖 AI-assisted file operations (
ai_edit(uses Aider) ℹ️ Aider Configuration - 📁 Git-assisted file operations (
git_read_file,git_apply_diff) - 📂 Direct file operations (
search_and_replace(usessedwith fallback to direct mode),write_to_file) ℹ️ Direct vs AI-assisted - 🎋 Git management operations (
git_diff_all(compares to HEAD,git_diff(compares to specific commits/branches),git_show,git_stage_and_commit,git_status,git_log,git_create_branch,git_checkout,git_reset) - 🖥️ Terminal commands execution (
execute_command) ⚠️ Automation-Related Security
- 🤖 AI-assisted file operations (
⬇️ Skip to Downloads
♒ Agentic Flows
ℹ️ To ensure agent will follow rules, enable power steering in Roo Code's experimental settings.
https://github.com/user-attachments/assets/4d218e5e-906c-4d24-abc3-09ab0acdc1d0
😻 Vibe-Driven Dev Flow: inspired by pure vibes 🦘, optimized for Vibing human-out-of-loop
🪪 Show Description
- Just connect Roo to
mcp-devtoolsserver and code as usual but use❓ Askmode instead of💻 Code, AI will automatically use theai_edittool if available to apply all changes.
🙀 Spec-Driven Dev Flow: inspired by spooky vibes 👻, optimized for Agile human-in-the-loop
🪪 Show Description
- To experience agile spec-driven flow, place the .kiroomodes file and .kiroo/ folder into your repo root and rename them to
.roomodesand.roo/:- Start writing Epic Specs and User Stories with
✒️ Agile Writer - After your confirmation, it will auto-switch to
✏️ Agile Architectand write Epic Design - After next confirmation, it will auto-switch to
🖊️ Agile Plannerand write Epic Tasks - After final comfirmation, it will auto-switch to
🖋️ Agile Devand orchestrate Epic Code writing, followed by Epic Review of each commit (you might want to direct native💻 Codeto commit results before task completion).
- Start writing Epic Specs and User Stories with
😼 Plan-Driven Dev Flow: inspired by minimal vibes ♾️, optimized for Waterfall human-out-of-loop
🪪 Show Description
- To experience structured waterfall flow, place the .rooroomodes file and .rooroo/ folder into your repo root and rename them to
.roomodesand.roo/:🧭 Rooroo Navigatoragent is your Advanced Flow manager. Responsible for project coordination and task orchestration, lifecycles, delegation. Providescontext.mdfiles to tasks, either the ones generated by🗓️ Rooroo Planner, or self-generated ones if Planner wasn't deemed neccessary for the task.👩🏻💻 Rooroo Developeragent:
Delegates all code changes to subagent then reviews Aider work results, or just codes itself ifai_edittool unavailable.📊 Rooroo Analyzeragent acts as a researcher and analyzes the code.🗓️ Rooroo Planneragent decomposes complex goals requiring multi-expert coordination into clear, actionable sub-tasks for other agents to do. It is also the main supplier ofcontext.mdfiles for them.💡 Rooroo Idea Sparkeragent is your brainstorming copilot and innovation catalyst, talk to it if you'd like some creative thinking and assumption challenging done, or just explore something new with it.
1️⃣ Prerequisites
- Python 3.12, uv
🐧 Linux/macOS
curl -LsSf https://astral.sh/uv/install.sh | sh
🪟 Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
2️⃣ Usage
🐍 Running from PyPi
uvx mcp-devtools -p 1337
🐈⬛ Running from GitHub
🐧 Linux/macOS
git clone "https://github.com/daoch4n/mcp-devtools/"
cd mcp-devtools
./server.sh -p 1337
🪟 Windows
git clone "https://github.com/daoch4n/mcp-devtools/"
cd mcp-devtools
.\server.ps1 -p 1337
3️⃣ MCP Server Configuration
To integrate mcp-devtools with your AI assistant, add the following configuration to your MCP settings file:
{
"mcpServers": {
"devtools": {
"url": "http://127.0.0.1:1337/sse"
}
}
}
4️⃣ Example AI Workflow
📄 Show Prompt
# ROLE AND DIRECTIVE
**You are a Senior Software Architect.** Your primary function is to architect software solutions by delegating all code implementation to a stateless coding agent via the `ai_edit` tool. Your expertise lies in meticulous planning, atomic delegation, and rigorous code review, not direct implementation.
---
# STANDARD OPERATING PROCEDURE (SOP)
You must adhere to the following five-step, iterative workflow:
1. **Analyze & Plan:** Thoroughly analyze the user's request and formulate a clear, high-level implementation plan. Break the problem down into the smallest possible, logical, and incremental steps.
2. **Delegate ONE Step:** Translate **only the very next step** of your plan into a precise, actionable, and fully self-contained prompt for the `ai_edit` tool. **Never bundle multiple steps into a single delegation.**
3. **Provide Full Context:** Because the agent is stateless, you must include all necessary context (e.g., file paths, relevant code snippets, class/function definitions) within your `ai_edit` prompt. (See "Agent Memory & Context Protocol" below).
4. **Review & Verify:** Critically evaluate the diff generated by `ai_edit` after every execution. This is a **mandatory code review**.
* Does the code correctly implement the single step you delegated?
* Is the code quality acceptable?
* Are there any errors or edge cases missed?
5. **Iterate & Guide:**
* **If Approved:** The step is complete. Proceed to delegate the *next* incremental step in your plan.
* **If Revision is Needed:** The implementation is flawed. Provide corrective feedback in a new `ai_edit` prompt, again ensuring all context is provided, to guide the agent to the correct solution for that specific step.
---
# AGENT MEMORY & CONTEXT PROTOCOL (CRITICAL)
**The coding agent is STATELESS.** It has no memory of previous instructions, file contents, or chat history.
* **Your Responsibility:** You must treat every call to `ai_edit` as if you are speaking to a brand-new developer who has zero knowledge of the project.
* **Actionable Rule:** In every prompt to `ai_edit`, you are required to provide all the immediate context the agent needs to complete that *one specific task*. This includes, but is not limited to:
* The full path to the file(s) being edited.
* The specific function, class, or block of code to be modified.
* Any dependencies or related code snippets from the same or other files that are necessary for the agent to understand the task.
---
# CONSTRAINTS & TOOL PROTOCOL
**Primary Constraint:**
* You are **strictly prohibited** from writing or modifying application code directly. All code implementation must be delegated.
* **Forbidden Tools for Coding:** `apply_diff`, `search_and_replace`, `write_to_file`, and `{your_native_tool_slug}` must NOT be used to modify code.
**Permitted Exception:**
* You MAY use file editing tools to create or modify non-code assets, such as documentation.
**`ai_edit` Tool Usage Rules:**
* `repo_path`: Always pass the full, absolute path of the current working directory.
* `model` / `diff_format`: Do not include these parameters unless explicitly instructed by the user.
🎧 Audio Overview
https://github.com/user-attachments/assets/05670a7a-72c5-4276-925c-dbd1ed617d99
🙈 Automation-Related Security Considerations
- 🛡️ For automated workflows, always run MCP Servers in isolated environments (🐧Firejail or 🪟Sandboxie)
- 🗃️ Filesystem access boundaries are maintained via passing
repo_pathto every tool call, so AI assistant only has read/write access to files in the current workspace (relative to any path AI decides to pass asrepo_path, make sure system prompt is solid on cwd use). - ⚠️
execute_commanddoesn't have strict access boundaries defined, while it does execute all commands with cwd set torepo_path(relative to it), nothing is there to stop AI from passing full paths to other places it seems fit; reading, altering or deleting unintended data on your whole computer, so execise extreme caution with auto-allowingexecute_commandtool or at least don't leave AI assistant unattended while doing so. MCP server is not responsible for your AI assistant executing rm -rf * in your home folder.
⁉️ Known Issues and Workarounds
💾 Direct Code Editing vs 🤖 AI-assisted Editing
📃 Show Issue
Issue:
- 🔍 When using the
write_to_filetool for direct code editing with languages like JavaScript that utilize template literals, you may encounter unexpected syntax errors. This issue stems from how the AI assistant generates thecontentstring, where backticks and dollar signs within template literals might be incorrectly escaped with extra backslashes (\).
Mitigation:
- 🔨 The
write_to_file,search_and_replaceandgit_apply_difftools are dynamically integrated withtsc(TypeScript compiler) for conditional type checking of.js,.mjs, and.tsfiles on edit. The output oftsc --noEmit --allowJsis provided as part of the tool's response. AI assistants should parse this output to detect any compiler errors and should not proceed with further actions if errors are reported, indicating a problem with the written code.
Workarounds:
- 🤖 Instruct your AI assistant to delegate editing files to MCP-compatible coding agent by using
ai_edittool instead, as it is more suitable for direct code manipulation, automatically commits changes and produces resulting diff as tool output, and let AI assistant act as task orchestrator that will write down plans and docs withwrite_to_filetool then delegate actual coding to specialized agent, get its report (diff) as tool call result, usegit_read_filetool to double check agent's work, and manage commits and branches (ai_edittool basically integratesAidervia some logic ported from its MCP bridge).
❔ Aider limitations due to its commit-first nature
📃 Show Issue
Issue:
- 🔍 When using
ai_edittool in a dirty repo state, e.g. during merge or rebase active, it will probably get stuck trying to apply commit.
Workarounds:
- ⚙️ Temporarily disable auto commiting functions in your
.aider.conf.ymlconfiguration file.
ℹ️ Available Tools
📄 Show Descriptions and JSON Schemas
git_status
-
Description: Shows the current status of the Git working tree, including untracked, modified, and staged files.
-
Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." } }, "required": [ "repo_path" ] }
git_diff_all
- Description: Shows all changes in the working directory, including both staged and unstaged modifications, compared to the HEAD commit. This provides a comprehensive view of all local changes.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." } }, "required": [ "repo_path" ] }
git_diff
- Description: Shows differences between the current working directory and a specified Git target (e.g., another branch, a specific commit hash, or a tag).
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "target": { "type": "string", "description": "The target (e.g., branch name, commit hash, tag) to diff against. For example, 'main', 'HEAD~1', or a full commit SHA." } }, "required": [ "repo_path", "target" ] }
git_stage_and_commit
- Description: Stages specified files (or all changes if no files are specified) and then commits them to the repository with a given message. This creates a new commit in the Git history.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "message": { "type": "string", "description": "The commit message for the changes." }, "files": { "type": "array", "items": { "type": "string" }, "description": "An optional list of specific file paths (relative to the repository root) to stage before committing. If not provided, all changes will be staged." } }, "required": [ "repo_path", "message" ] }
git_reset
- Description: Unstages all currently staged changes in the repository, moving them back to the working directory without discarding modifications. This is equivalent to
git resetwithout arguments. - Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." } }, "required": [ "repo_path" ] }
git_log
- Description: Shows the commit history for the repository, listing recent commits with their hash, author, date, and message. The number of commits can be limited.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "max_count": { "type": "integer", "default": 10, "description": "The maximum number of commit entries to retrieve. Defaults to 10." } }, "required": [ "repo_path" ] }
git_create_branch
- Description: Creates a new Git branch with the specified name. Optionally, you can base the new branch on an existing branch or commit, otherwise it defaults to the current active branch.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "branch_name": { "type": "string", "description": "The name of the new branch to create." }, "base_branch": { "type": "string", "nullable": true, "description": "Optional. The name of the branch or commit hash to base the new branch on. If not provided, the new branch will be based on the current active branch." } }, "required": [ "repo_path", "branch_name" ] }
git_checkout
- Description: Switches the current active branch to the specified branch name. This updates the working directory to reflect the state of the target branch.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "branch_name": { "type": "string", "description": "The name of the branch to checkout." } }, "required": [ "repo_path", "branch_name" ] }
git_show
- Description: Shows the metadata (author, date, message) and the diff of a specific commit. This allows inspection of changes introduced by a particular commit.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "revision": { "type": "string", "description": "The commit hash or reference (e.g., 'HEAD', 'main', 'abc1234') to show details for." } }, "required": [ "repo_path", "revision" ] }
git_apply_diff
- Description: Applies a given diff content (in unified diff format) to the working directory of the repository. This can be used to programmatically apply patches or changes.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "diff_content": { "type": "string", "description": "The diff content string to apply to the repository. This should be in a unified diff format." } }, "required": [ "repo_path", "diff_content" ] }
git_read_file
- Description: Reads and returns the entire content of a specified file within the Git repository's working directory. The file path must be relative to the repository root.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "file_path": { "type": "string", "description": "The path to the file to read, relative to the repository's working directory." } }, "required": [ "repo_path", "file_path" ] }
search_and_replace
- Description: Searches for a specified string or regex pattern within a file and replaces all occurrences with a new string. Supports case-insensitive search and line-range restrictions. It attempts to use
sedfor efficiency, falling back to Python logic ifsedfails or makes no changes. - Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "file_path": { "type": "string", "description": "The path to the file to modify, relative to the repository's working directory." }, "search_string": { "type": "string", "description": "The string or regex pattern to search for within the file." }, "replace_string": { "type": "string", "description": "The string to replace all matches of the search string with." }, "ignore_case": { "type": "boolean", "default": false, "description": "If true, the search will be case-insensitive. Defaults to false." }, "start_line": { "type": "integer", "nullable": true, "description": "Optional. The 1-based starting line number for the search and replace operation (inclusive). If not provided, search starts from the beginning of the file." }, "end_line": { "type": "integer", "nullable": true, "description": "Optional. The 1-based ending line number for the search and replace operation (inclusive). If not provided, search continues to the end of the file." } }, "required": [ "repo_path", "file_path", "search_string", "replace_string" ] }
write_to_file
- Description: Writes the provided content to a specified file within the repository. If the file does not exist, it will be created. If it exists, its content will be completely overwritten. Includes a check to ensure content was written correctly and generates a diff.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory." }, "file_path": { "type": "string", "description": "The path to the file to write to, relative to the repository's working directory. The file will be created if it doesn't exist, or overwritten if it does." }, "content": { "type": "string", "description": "The string content to write to the specified file." } }, "required": [ "repo_path", "file_path", "content" ] }
execute_command
- Description: Executes an arbitrary shell command within the context of the specified repository's working directory. This tool can be used for tasks not covered by other specific Git tools, such as running build scripts, linters, or other system commands.
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the directory where the command should be executed." }, "command": { "type": "string", "description": "The shell command string to execute (e.g., 'ls -l', 'npm install')." } }, "required": [ "repo_path", "command" ] }
ai_edit
-
Description: AI pair programming tool for making targeted code changes using Aider. Use this tool to:
- Implement new features or functionality in existing code
- Add tests to an existing codebase
- Fix bugs in code
- Refactor or improve existing code
- Make structural changes across multiple files
The tool requires:
- A repository path where the code exists
- A detailed message describing what changes to make. Please only describe one change per message. If you need to make multiple changes, please submit multiple requests.
Edit Format Selection: If the
edit_formatoption is not explicitly provided, the default is selected based on the model name:- If the model includes
gemini, defaults todiff-fenced - If the model includes
gpt, defaults toudiff - Otherwise, defaults to
diff
Best practices for messages:
- Be specific about what files or components to modify
- Describe the desired behavior or functionality clearly
- Provide context about the existing codebase structure
- Include any constraints or requirements to follow
Examples of good messages:
- "Add unit tests for the Customer class in src/models/customer.rb testing the validation logic"
- "Implement pagination for the user listing API in the controllers/users_controller.js file"
- "Fix the bug in utils/date_formatter.py where dates before 1970 aren't handled correctly"
- "Refactor the authentication middleware in middleware/auth.js to use async/await instead of callbacks"
-
Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository's working directory where the AI edit should be performed." }, "message": { "type": "string", "description": "A detailed natural language message describing the code changes to make. Be specific about files, desired behavior, and any constraints." }, "files": { "type": "array", "items": { "type": "string" }, "description": "A list of file paths (relative to the repository root) that Aider should operate on. This argument is mandatory." }, "continue_thread": { "type": "boolean", "description": "Required. Whether to continue the Aider thread by restoring chat history. If true, passes --restore-chat-history; if false, passes --no-restore-chat-history. Clients must explicitly choose." }, "options": { "type": "array", "items": { "type": "string" }, "description": "Optional. A list of additional command-line options to pass directly to Aider. Each option should be a string." }, "edit_format": { "type": "string", "enum": [ "diff", "diff-fenced", "udiff", "whole" ], "default": "diff", "description": "Optional. The format Aider should use for edits. Defaults to 'diff'. Options: 'diff', 'diff-fenced', 'udiff', 'whole'." } }, "required": [ "repo_path", "message", "files", "continue_thread" ] }
aider_status
- Description: Check the status of Aider and its environment. Use this to:
- Verify Aider is correctly installed
- Check API keys
- View the current configuration
- Diagnose connection or setup issues
- Input Schema:
{ "type": "object", "properties": { "repo_path": { "type": "string", "description": "The absolute path to the Git repository or working directory to check Aider's status within." }, "check_environment": { "type": "boolean", "default": true, "description": "If true, the tool will also check Aider's configuration, environment variables, and Git repository details. Defaults to true." } }, "required": [ "repo_path" ] }
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_devtools-1.3.0.tar.gz.
File metadata
- Download URL: mcp_devtools-1.3.0.tar.gz
- Upload date:
- Size: 30.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd72556ca56066e972f310a08a5cee0223a3af3ac4f1ee6c0a1c098347f69130
|
|
| MD5 |
4e56c80253539ecd14ec4491ca3dfc91
|
|
| BLAKE2b-256 |
b67b4baaa054f1b8888170eab44c82599f1ec4ab63cde6b413e2dfa82c4a81be
|
Provenance
The following attestation bundles were made for mcp_devtools-1.3.0.tar.gz:
Publisher:
python-package.yml on daoch4n/mcp-devtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_devtools-1.3.0.tar.gz -
Subject digest:
fd72556ca56066e972f310a08a5cee0223a3af3ac4f1ee6c0a1c098347f69130 - Sigstore transparency entry: 452864563
- Sigstore integration time:
-
Permalink:
daoch4n/mcp-devtools@d237dec83c8c560db96600e7d78ec94d15771c7a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/daoch4n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-package.yml@d237dec83c8c560db96600e7d78ec94d15771c7a -
Trigger Event:
push
-
Statement type:
File details
Details for the file mcp_devtools-1.3.0-py3-none-any.whl.
File metadata
- Download URL: mcp_devtools-1.3.0-py3-none-any.whl
- Upload date:
- Size: 29.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18af39b535f1da8c730708b854bca49c543ef7c929d84f261bf3cd41ce8e8aba
|
|
| MD5 |
e124368f88e41496c1f13a2f37ab7ade
|
|
| BLAKE2b-256 |
9bdb779d10b8593bd4bfd544d1463c7c066221c0babeab2bc698113e4a332bf2
|
Provenance
The following attestation bundles were made for mcp_devtools-1.3.0-py3-none-any.whl:
Publisher:
python-package.yml on daoch4n/mcp-devtools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_devtools-1.3.0-py3-none-any.whl -
Subject digest:
18af39b535f1da8c730708b854bca49c543ef7c929d84f261bf3cd41ce8e8aba - Sigstore transparency entry: 452864569
- Sigstore integration time:
-
Permalink:
daoch4n/mcp-devtools@d237dec83c8c560db96600e7d78ec94d15771c7a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/daoch4n
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-package.yml@d237dec83c8c560db96600e7d78ec94d15771c7a -
Trigger Event:
push
-
Statement type: