Skip to content

Commit 7a31e5f

Browse files
committed
Rename domain to mcpm.sh
1 parent aa1f63d commit 7a31e5f

File tree

8 files changed

+16
-173
lines changed

8 files changed

+16
-173
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ This repository contains the CLI and service components for MCP Manager, built w
9191
The project follows the modern src-based layout:
9292

9393
```
94-
getmcp.sh/
94+
mcpm.sh/
9595
├── src/ # Source package directory
96-
│ └── mcp/ # Main package code
96+
│ └── mcpm/ # Main package code
9797
├── tests/ # Test directory
9898
├── test_cli.py # Development CLI runner
9999
├── pyproject.toml # Project configuration
@@ -104,8 +104,8 @@ getmcp.sh/
104104

105105
1. Clone the repository
106106
```
107-
git clone https://github.com/pathintegral-xyz/getmcp.sh.git
108-
cd getmcp.sh
107+
git clone https://github.com/getmcp-xyz/mcpm.sh.git
108+
cd mcpm.sh
109109
```
110110

111111
2. Set up a virtual environment with uv

bump_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ if [ $# -ne 1 ]; then
99
fi
1010

1111
NEW_VERSION=$1
12-
VERSION_FILE="src/mcp/version.py"
12+
VERSION_FILE="src/mcpm/version.py"
1313

1414
# Update the version file
15-
echo '"""Single source of truth for MCP version."""
15+
echo '"""Single source of truth for MCPM version."""
1616
1717
__version__ = "'$NEW_VERSION'"' > $VERSION_FILE
1818

pages/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
getmcp.sh
1+
mcpm.sh

pages/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>MCPM - Model Context Protocol Manager | getmcp.sh</title>
6+
<title>MCPM - Model Context Protocol Manager | mcpm.sh</title>
77
<link rel="preconnect" href="https://fonts.googleapis.com">
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
99
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
@@ -276,8 +276,8 @@ <h1>MCPM</h1>
276276
<h2>🚀 Quick Installation</h2>
277277
<p>Install MCPM with a single command:</p>
278278
<div class="code-block">
279-
<code><span class="command-prompt">$</span> curl -sSL https://getmcp.sh/install | bash</code>
280-
<button class="copy-button" data-command="curl -sSL https://getmcp.sh/install | bash">📋</button>
279+
<code><span class="command-prompt">$</span> curl -sSL https://mcpm.sh/install | bash</code>
280+
<button class="copy-button" data-command="curl -sSL https://mcpm.sh/install | bash">📋</button>
281281
</div>
282282
<p>Model Context Protocol Manager (MCPM) is a Homebrew-like service for managing Model Context Protocol (MCP) servers across clients.</p>
283283
</div>
@@ -354,7 +354,7 @@ <h2>Supported Clients</h2>
354354
</div>
355355

356356
<footer>
357-
<p>© 2025 Model Context Protocol Manager | <a href="https://github.com/pathintegral-xyz/getmcp.sh">GitHub</a></p>
357+
<p>© 2025 Model Context Protocol Manager | <a href="https://github.com/getmcp-xyz/mcpm.sh">GitHub</a></p>
358358
</footer>
359359
</div>
360360

pages/install

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ success() {
4141
# Function to check Python version
4242
check_python() {
4343
if ! command_exists python3; then
44-
error "Python 3 is not installed. MCP requires Python 3.8 or higher."
44+
error "Python 3 is not installed. MCPM requires Python 3.8 or higher."
4545
echo "Please install Python 3.8+ and try again."
4646
echo "Visit https://www.python.org/downloads/ for installation instructions."
4747
exit 1
@@ -75,9 +75,9 @@ ensure_pip() {
7575
fi
7676
}
7777

78-
# Function to install MCP
78+
# Function to install MCPM
7979
install_mcp() {
80-
info "Installing MCP..."
80+
info "Installing MCPM..."
8181

8282
# Check if we're on macOS
8383
if [[ "$(uname)" == "Darwin" ]]; then
@@ -144,7 +144,7 @@ verify_installation() {
144144
echo -e " ${LIGHT_GREEN}mcpm list --available${NC} # List available MCP servers"
145145
echo -e " ${LIGHT_GREEN}mcpm install <server>${NC} # Install an MCP server"
146146
echo
147-
echo -e "For more information, visit ${DARK_GREEN}https://getmcp.sh${NC}"
147+
echo -e "For more information, visit ${DARK_GREEN}https://mcpm.sh${NC}"
148148
echo
149149
else
150150
PATH_DIRS=$(echo $PATH | tr ':' '\n')
@@ -166,7 +166,7 @@ verify_installation() {
166166

167167
# Main installation process
168168
main() {
169-
info "Starting MCP installation..."
169+
info "Starting MCPM installation..."
170170
check_python
171171
ensure_pip
172172
install_mcp

update-docstrings.py

Lines changed: 0 additions & 56 deletions
This file was deleted.

update-imports.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

verify-migration.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)