Tools to revise and refactor code via MCP
Project description
Revise MCP
Tools to revise and refactor code via MCP (Model Context Protocol).
Installation
- Install Python 3.14+
- Install pipx:
python3 -m pip install pipx - Install Revise MCP:
pipx install revise-mcp
which revise
# /Users/YOUR_USERNAME/.local/bin/revise
Usage
VS Code MCP Configuration
Add to your VS Code MCP settings:
{
"servers": {
"revise": {
"type": "stdio",
"command": "/Users/YOUR_USERNAME/.local/bin/revise",
"args": []
},
}
}
Claude Code MCP Configuration
Run once to register Revise MCP for all your projects:
claude mcp add --scope user revise -- /Users/YOUR_USERNAME/.local/bin/revise
Tools
move_string_in_file
Moves a contiguous range of lines from one location to another within a file
(or between files). Uses substring matching with a ⬥ marker to identify
cut boundaries and paste location — no line counting or coordinate math required.
Does not alter indentation of the moved text. Use indent_dedent afterward
if the moved text needs re-indentation at its new location.
Parameters:
cutFilePath— Absolute path to the file containing the text to movecutStartAt— Substring fragment identifying the line where the cut begins. The⬥marks a position on the target line; the cut starts at the beginning of that linecutEndAt— Substring fragment identifying the line after the cut ends. The cut ends before this line (exclusive)pasteAt— Substring fragment marking the insertion point, with⬥adjacent to a\nor file boundary. Matched against the pre-cut file statepasteFilePath(optional) — Absolute path to the paste destination file. Defaults tocutFilePath(same-file move)
Example — move a class before another definition:
{
"cutFilePath": "/path/to/file.py",
"cutStartAt": "class MyClass:",
"cutEndAt": "class NextClass:",
"pasteAt": "\n⬥def top_level_function():"
}
indent_dedent
Indents or unindents a contiguous range of lines by a specified number of
levels. Uses substring matching with a ⬥ marker to identify the range
boundaries — no line counting required.
Empty lines within the range are left unchanged. Indent size is auto-detected from the file if not specified.
Parameters:
filePath— Absolute path to the file to editindentStartAt— Substring fragment identifying the first line to indent/unindent. The⬥marks a position on the target line; the entire line is includedindentEndAt— Substring fragment identifying the last line to indent/unindent (inclusive)indentDelta— Number of indent levels to add (positive) or remove (negative)indentSize(optional) — Spaces per indent level (e.g.,4), or"\t"for tabs. Auto-detected if omitted
Example — indent a block, then wrap it:
{
"filePath": "/path/to/file.py",
"indentStartAt": "# Create home URL\n⬥",
"indentEndAt": "(home_ti,) = root_ti.Children⬥\n",
"indentDelta": 1
}
Then use replace_string_in_file to insert if condition: before the indented block.
outline_file
Returns a high-level outline of a file, similar to VS Code's folded view. Useful for quickly understanding the structure of a large file before reading it in full.
Includes only structurally significant lines, currently optimized for the Python language only:
class,def, andasync defdefinitions (at any indentation level)if __name__ == '__main__':guards- Section separator comments (
# === ...or# --- ...), plus the immediately following section-name comment if present
Output is one line per entry in the form LINE_NUMBER:LINE_CONTENT (1-indexed).
Parameters:
filePath— Absolute path to the file to outline
Example:
{
"filePath": "/path/to/file.py"
}
rename_symbol (optional)
Renames a symbol (function, variable, class, etc.) and all its references across the workspace using VS Code's LSP-backed rename. Uses text-based matching to locate the symbol — no coordinate counting required.
Note: This tool is optional and has additional setup requirements. See Optional:
rename_symbolSetup below.It is most useful for AI coding harnesses that do not provide their own symbolic rename tool (e.g. Claude Code). VS Code users already have a native rename tool and may skip this.
Parameters:
filePath— Absolute path to the file containing the symbol to renameoldString— Line fragment containing the original symbol name. Must be unique within the file (or within the specified line). Example:'def mocked_show_modal('newString— Line fragment with all occurrences of the symbol renamed. Example:'def mocked_show_modal_renamed('line(optional) — 1-indexed line number to limit the search foroldString. Use whenoldStringappears on multiple lines
Example:
{
"filePath": "/path/to/file.py",
"oldString": "def helper_function(",
"newString": "def _helper_function("
}
This renames helper_function to _helper_function everywhere it is referenced.
Optional: rename_symbol Setup
The rename_symbol tool delegates the actual rename operation to VS Code via
the VSC as MCP
extension. This means:
- VS Code must be running with the project open.
- The "VSC as MCP" extension must be installed in VS Code. It exposes a
local MCP server (by default at
http://localhost:4000/mcp) that Revise MCP calls internally.
Steps
- Install the VSC as MCP extension in VS Code.
- Open VS Code with the project you want to rename symbols in.
- Ensure Revise MCP is configured in your AI coding harness (see Installation and Usage).
No additional configuration of Revise MCP itself is required — rename_symbol
will automatically connect to the VSC as MCP server on localhost:4000.
Contributing
See doc/DESIGN.md for a high-level introduction to the server design and the principles guiding tool development.
To publish a new release to PyPI, see doc/RELEASING.md.
Local Development Setup
Requires Python 3.14+ and Poetry.
# Checkout code
git checkout https://github.com/davidfstr/revise-mcp.git
cd revise-mcp
# Create/update the virtual environment at .venv/
poetry install
# Run the server locally
poetry run python -m revise
# Run tests
poetry run pytest tests/
Testing with MCP Inspector
# Start in HTTP mode for testing with MCP Inspector
poetry run python -m revise --transport streamable-http
# In another terminal, start the inspector
npx -y @modelcontextprotocol/inspector
VS Code MCP Configuration (Development)
To run the MCP server from your development checkout rather than an installed binary, point VS Code at the Poetry-managed venv:
{
"servers": {
"revise": {
"type": "stdio",
"cwd": "/path/to/revise-mcp",
"command": "poetry",
"args": ["run", "python", "-m", "revise"]
},
}
}
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 revise_mcp-1.0.1.tar.gz.
File metadata
- Download URL: revise_mcp-1.0.1.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.3 CPython/3.14.2 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a371e99a03bc7795f93fcb2671445d25a1724b4ff856df57b9dd590fd801c87f
|
|
| MD5 |
f03d862127fe387c8bc38725b006f452
|
|
| BLAKE2b-256 |
d42c748c43c1943e7a585ebb77f213059fd60b39f11a4e79fac40aca801f40b8
|
File details
Details for the file revise_mcp-1.0.1-py3-none-any.whl.
File metadata
- Download URL: revise_mcp-1.0.1-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.3 CPython/3.14.2 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d6e935f9a67670dc798625dce3d891f12ef518ab7655da4b45a16bb04335f2f
|
|
| MD5 |
01522b3ac55251c48858cfb50428387f
|
|
| BLAKE2b-256 |
65cf96f2477e8f29de41b883a748f2db780d26a52cf0b15247da804f6814cd58
|