Skip to content

Commit f00bfca

Browse files
committed
rename
1 parent e86bd5c commit f00bfca

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Python Refactoring Assistant MCP Server
1+
# MCP Python Refactoring
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
44
[![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
@@ -37,15 +37,15 @@ This tool integrates with AI coding assistants (Claude, ChatGPT, Cursor, etc.) t
3737

3838
```bash
3939
# Install and run directly from GitHub
40-
uvx --from git+https://github.com/slamer59/mcp-refactoring-assistant.git mcp-refactoring-assistant
40+
uvx --from git+https://github.com/slamer59/mcp-python-refactoring.git mcp-python-refactoring
4141
```
4242

4343
### Development Installation
4444

4545
```bash
4646
# Clone and setup for development
47-
git clone https://github.com/slamer59/mcp-refactoring-assistant.git
48-
cd mcp-refactoring-assistant
47+
git clone https://github.com/slamer59/mcp-python-refactoring.git
48+
cd mcp-python-refactoring
4949
uv sync
5050
```
5151

@@ -377,7 +377,7 @@ For most terminal-based MCP clients:
377377

378378
```bash
379379
# With uvx
380-
client-name --mcp-server "uvx --from git+https://github.com/slamer59/mcp-refactoring-assistant.git mcp-refactoring-assistant"
380+
client-name --mcp-server "uvx --from git+https://github.com/slamer59/mcp-python-refactoring.git mcp-python-refactoring"
381381

382382
# With local installation
383383
client-name --mcp-server "python /path/to/mcp_server.py"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "mcp-refactoring-assistant"
2+
name = "mcp-python-refactoring"
33
version = "0.1.0"
44
description = "MCP tool to guide Python code refactoring without automatic changes"
55
readme = "README.md"
@@ -31,12 +31,12 @@ dependencies = [
3131
]
3232

3333
[project.urls]
34-
Homepage = "https://github.com/slamer59/mcp-refactoring-assistant"
35-
Repository = "https://github.com/slamer59/mcp-refactoring-assistant"
36-
Issues = "https://github.com/slamer59/mcp-refactoring-assistant/issues"
34+
Homepage = "https://github.com/slamer59/mcp-python-refactoring"
35+
Repository = "https://github.com/slamer59/mcp-python-refactoring"
36+
Issues = "https://github.com/slamer59/mcp-python-refactoring/issues"
3737

3838
[project.scripts]
39-
mcp-refactoring-assistant = "mcp_refactoring_assistant.mcp_server:main"
39+
mcp-python-refactoring = "mcp_refactoring_assistant.mcp_server:main"
4040

4141
[project.optional-dependencies]
4242
mcp = ["mcp>=1.0.0"]

0 commit comments

Comments
 (0)