Skip to content

Commit 4adde7f

Browse files
committed
cleanup
1 parent 7942e7c commit 4adde7f

File tree

14 files changed

+22
-71
lines changed

14 files changed

+22
-71
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ logs/
5959
.env.test
6060
.env.production
6161

62-
# MCPM specific
63-
.mcpm/
62+
# MCP specific
63+
.mcp/

CNAME

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

index.html

Lines changed: 8 additions & 8 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 Package Manager</title>
6+
<title>MCP - Model Context Protocol | getmcp.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">
@@ -211,8 +211,8 @@
211211
<body>
212212
<div class="container">
213213
<header>
214-
<h1>MCPM</h1>
215-
<div class="tagline">The Model Context Protocol Package Manager</div>
214+
<h1>MCP</h1>
215+
<div class="tagline">The Model Context Protocol Manager</div>
216216
</header>
217217

218218
<div class="coming-soon">
@@ -225,25 +225,25 @@ <h2>What to Expect</h2>
225225
<div class="feature">
226226
<h3><span>🧩</span> Simple Config Installation</h3>
227227
<p>Install Model Context Protocol configs with a single command:</p>
228-
<code><span class="command-prompt">$</span> mcpm install claude-config</code>
228+
<code><span class="command-prompt">$</span> mcp install claude-config</code>
229229
</div>
230230

231231
<div class="feature">
232232
<h3><span>🔄</span> Easy Updates</h3>
233233
<p>Keep your MCP configs up to date effortlessly:</p>
234-
<code><span class="command-prompt">$</span> mcpm update</code>
234+
<code><span class="command-prompt">$</span> mcp update</code>
235235
</div>
236236

237237
<div class="feature">
238238
<h3><span>🔍</span> Config Discovery</h3>
239239
<p>Find available Model Context Protocol configs:</p>
240-
<code><span class="command-prompt">$</span> mcpm search</code>
240+
<code><span class="command-prompt">$</span> mcp search</code>
241241
</div>
242242

243243
<div class="feature">
244244
<h3><span>⚙️</span> Server Management</h3>
245245
<p>Streamlined configuration and management for Model Context Protocol servers:</p>
246-
<code><span class="command-prompt">$</span> mcpm server config</code>
246+
<code><span class="command-prompt">$</span> mcp server config</code>
247247
</div>
248248
</div>
249249

@@ -257,7 +257,7 @@ <h2>Supported Configs</h2>
257257
</div>
258258

259259
<footer>
260-
<p>© 2025 MCPM Project | <a href="https://github.com/pathintegral-xyz/mcpm.sh">GitHub</a></p>
260+
<p>© 2025 MCP Project | <a href="https://github.com/pathintegral-xyz/getmcp.sh">GitHub</a></p>
261261
</footer>
262262
</div>
263263
</body>

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
requires-python = ">=3.8"
1111
license = "MIT"
1212
authors = [
13-
{name = "MCPM Contributors"},
13+
{name = "MCP Contributors"},
1414
]
1515
dependencies = [
1616
"click>=8.1.3",

src/mcp/clients/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""
2-
Client integrations for MCPM - manages MCP client-specific configurations
2+
Client integrations for MCP - manages client-specific configurations
33
"""

src/mcp/clients/claude_desktop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Claude Desktop integration utilities for MCPM
2+
Claude Desktop integration utilities for MCP
33
"""
44

55
import os

src/mcp/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""
2-
MCPM utilities package
2+
MCP utilities package
33
"""

src/mcp/utils/repository.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def search_servers(self, query: Optional[str] = None, tags: Optional[str] = None
3737
"display_name": "Filesystem",
3838
"description": "Access to local files and directories",
3939
"version": "1.0.0",
40-
"author": "MCPM Team",
40+
"author": "MCP Team",
4141
"tags": ["files", "local", "essential"],
4242
"clients": ["claude-desktop", "cursor", "windsurf"]
4343
},
@@ -46,7 +46,7 @@ def search_servers(self, query: Optional[str] = None, tags: Optional[str] = None
4646
"display_name": "Web Browser",
4747
"description": "Control and interact with web browser",
4848
"version": "0.9.2",
49-
"author": "MCPM Team",
49+
"author": "MCP Team",
5050
"tags": ["web", "browser", "internet"],
5151
"clients": ["claude-desktop", "windsurf"]
5252
},
@@ -55,7 +55,7 @@ def search_servers(self, query: Optional[str] = None, tags: Optional[str] = None
5555
"display_name": "Database Access",
5656
"description": "Access SQL and NoSQL databases",
5757
"version": "0.8.5",
58-
"author": "MCPM Team",
58+
"author": "MCP Team",
5959
"tags": ["database", "sql", "nosql"],
6060
"clients": ["claude-desktop", "cursor"]
6161
}

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"""MCPM Test Suite"""
1+
"""MCP Test Suite"""

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Pytest configuration for MCPM tests
2+
Pytest configuration for MCP tests
33
"""
44

55
import os

0 commit comments

Comments
 (0)