Skip to content

Commit c07b01a

Browse files
authored
Merge branch 'main' into jonathan/feat-support-custom-server-install
2 parents 38cb3b7 + e3b244c commit c07b01a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+6012
-93
lines changed

.github/readme/mcpm_wechat.png

37.9 KB
Loading

.releaserc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"@semantic-release/commit-analyzer",
77
"@semantic-release/release-notes-generator",
88
"@semantic-release/changelog",
9+
"@semantic-release/github",
910
[
1011
"@semantic-release/exec",
1112
{

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [1.6.2](https://github.com/pathintegral-institute/mcpm.sh/compare/v1.6.1...v1.6.2) (2025-04-27)
2+
3+
4+
### Bug Fixes
5+
6+
* explicitly set encoding to utf-8 ([#131](https://github.com/pathintegral-institute/mcpm.sh/issues/131)) ([6a4b4a4](https://github.com/pathintegral-institute/mcpm.sh/commit/6a4b4a4ce693642f2b307ef333b0217272a598a0))
7+
8+
## [1.6.1](https://github.com/pathintegral-institute/mcpm.sh/compare/v1.6.0...v1.6.1) (2025-04-25)
9+
10+
11+
### Bug Fixes
12+
13+
* add port availability check and improve status message for MCPRouter ([#124](https://github.com/pathintegral-institute/mcpm.sh/issues/124)) ([89bf558](https://github.com/pathintegral-institute/mcpm.sh/commit/89bf5583ce19e6542a5bad4ff58a0dd1ad4198bc))
14+
115
# [1.6.0](https://github.com/pathintegral-institute/mcpm.sh/compare/v1.5.1...v1.6.0) (2025-04-25)
216

317

README.md

Lines changed: 41 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,14 @@ MCPM is an open source service and a CLI package management tool for MCP servers
2727
2828
## 🚀 Quick Installation
2929

30-
Choose your preferred installation method:
31-
32-
### 🍺 Homebrew
33-
34-
```bash
35-
brew install mcpm
36-
```
37-
38-
### 📦 pipx (Recommended for Python tools)
39-
40-
```bash
41-
pipx install mcpm
42-
```
43-
44-
### 🐍 pip
45-
46-
```bash
47-
pip install mcpm
48-
```
49-
50-
### 🔄 Shell Script (One-liner)
30+
### Recommended:
5131

5232
```bash
5333
curl -sSL https://mcpm.sh/install | bash
5434
```
5535

36+
Or choose [other installation methods](#-other-installation-methods) like `brew`, `pipx`, `uv` etc.
37+
5638
## 🔎 Overview
5739

5840
MCPM simplifies the installation, configuration, and management of Model Context Protocol servers and their configurations across different applications (clients). Key features include:
@@ -195,6 +177,44 @@ The MCP Registry is a central repository of available MCP servers that can be in
195177
- [ ] MCP Server for MCPM Router (experimental, allow MCP clients to dynamically switch between profiles, suggest new MCP servers from registry, etc.)
196178
- [ ] Additional client support
197179

180+
181+
## 📦 Other Installation Methods
182+
183+
### 🍺 Homebrew
184+
185+
```bash
186+
brew install mcpm
187+
```
188+
189+
### 📦 pipx (Recommended for Python tools)
190+
191+
```bash
192+
pipx install mcpm
193+
```
194+
195+
### 🪄 uv tool
196+
197+
```bash
198+
uv tool install mcpm
199+
```
200+
201+
## More Installation Methods
202+
203+
### 🐍 pip
204+
205+
```bash
206+
pip install mcpm
207+
```
208+
209+
### 🧰 X-CMD
210+
211+
If you are a user of [x-cmd](https://x-cmd.com), you can run:
212+
213+
```sh
214+
x install mcpm.sh
215+
```
216+
217+
198218
## 👨‍💻 Development
199219

200220
This repository contains the CLI and service components for MCP Manager, built with Python and Click following modern package development practices.

README.zh-CN.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ MCPM 是一个开源的服务和命令行界面(CLI),用于管理模型上下
2727
2828
## 🚀 快速安装
2929

30-
选择您喜欢的安装方式:
30+
### 🔄 Shell 脚本(一行命令)
31+
32+
```bash
33+
curl -sSL https://mcpm.sh/install | bash
34+
```
35+
36+
或选择您喜欢的安装方式:
3137

3238
### 🍺 Homebrew
3339

@@ -41,16 +47,26 @@ brew install mcpm
4147
pipx install mcpm
4248
```
4349

50+
### 🪄 uv tool
51+
52+
```bash
53+
uv tool install mcpm
54+
```
55+
56+
## 其他安装方式
57+
4458
### 🐍 pip
4559

4660
```bash
4761
pip install mcpm
4862
```
4963

50-
### 🔄 Shell 脚本(一行命令)
64+
### 🧰 X-CMD
5165

52-
```bash
53-
curl -sSL https://mcpm.sh/install | bash
66+
如果你是 [x-cmd](https://x-cmd.com) 用户,可以运行以下命令安装:
67+
68+
```sh
69+
x install mcpm.sh
5470
```
5571

5672
## 🔎 概述

0 commit comments

Comments
 (0)