Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit b37f874

Browse files
committed
chore: Rename mcp-ecosystem to amoylab and mcp-gateway to unla
1 parent 2aab5b2 commit b37f874

File tree

27 files changed

+144
-144
lines changed

27 files changed

+144
-144
lines changed

docs/deployment/binary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
1. 创建必要的目录并下载配置文件和二进制:
99

1010
```bash
11-
mkdir -p mcp-gateway/{configs,data}
12-
cd mcp-gateway/
11+
mkdir -p unla/{configs,data}
12+
cd unla/
1313
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
1414
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
1515
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env

docs/deployment/docker.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MCP Gateway 提供两种部署方式:
99
### 镜像仓库
1010

1111
镜像发布到以下三个仓库:
12-
- Docker Hub: `docker.io/ifuryst/mcp-gateway-*`
12+
- Docker Hub: `docker.io/ifuryst/unla-*`
1313
- GitHub Container Registry: `ghcr.io/amoylab/unla/*`
1414
- 阿里云容器镜像服务: `registry.ap-southeast-1.aliyuncs.com/amoylab/unla-*`
1515

@@ -26,27 +26,27 @@ MCP Gateway 提供两种部署方式:
2626

2727
```bash
2828
# All-in-One 版本
29-
docker pull docker.io/ifuryst/mcp-gateway-allinone:latest
29+
docker pull docker.io/ifuryst/unla-allinone:latest
3030
docker pull ghcr.io/amoylab/unla/allinone:latest
3131
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
3232

3333
# API Server
34-
docker pull docker.io/ifuryst/mcp-gateway-apiserver:latest
34+
docker pull docker.io/ifuryst/unla-apiserver:latest
3535
docker pull ghcr.io/amoylab/unla/apiserver:latest
3636
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-apiserver:latest
3737

3838
# MCP Gateway
39-
docker pull docker.io/ifuryst/mcp-gateway-mcp-gateway:latest
39+
docker pull docker.io/ifuryst/unla-mcp-gateway:latest
4040
docker pull ghcr.io/amoylab/unla/mcp-gateway:latest
4141
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mcp-gateway:latest
4242

4343
# Mock User Service
44-
docker pull docker.io/ifuryst/mcp-gateway-mock-server:latest
44+
docker pull docker.io/ifuryst/unla-mock-server:latest
4545
docker pull ghcr.io/amoylab/unla/mock-server:latest
4646
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mock-server:latest
4747

4848
# Web 前端
49-
docker pull docker.io/ifuryst/mcp-gateway-web:latest
49+
docker pull docker.io/ifuryst/unla-web:latest
5050
docker pull ghcr.io/amoylab/unla/web:latest
5151
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-web:latest
5252
```
@@ -85,8 +85,8 @@ All-in-One 部署将所有服务打包在一个容器中,适合单机部署或
8585
1. 创建必要的目录并下载配置文件:
8686

8787
```bash
88-
mkdir -p mcp-gateway/{configs,data}
89-
cd mcp-gateway/
88+
mkdir -p unla/{configs,data}
89+
cd unla/
9090
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
9191
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
9292
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -104,7 +104,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
104104
```bash
105105
# 使用阿里云容器镜像服务镜像(建议在中国境内的服务器或设备使用)
106106
docker run -d \
107-
--name mcp-gateway \
107+
--name unla \
108108
-p 8080:80 \
109109
-p 5234:5234 \
110110
-p 5235:5235 \
@@ -119,7 +119,7 @@ docker run -d \
119119
120120
# 使用 GitHub Container Registry 镜像
121121
docker run -d \
122-
--name mcp-gateway \
122+
--name unla \
123123
-p 8080:80 \
124124
-p 5234:5234 \
125125
-p 5235:5235 \

docs/development/local-development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ MCP Gateway 项目由以下几个核心组件组成:
3131
克隆你 fork 的仓库到本地:
3232

3333
```bash
34-
git clone https://github.com/your-github-username/mcp-gateway.git
34+
git clone https://github.com/your-github-username/unla.git
3535
```
3636

3737
### 3. 初始化环境依赖
3838

3939
进入项目目录:
4040
```bash
41-
cd mcp-gateway
41+
cd unla
4242
```
4343

4444
安装依赖:
@@ -125,7 +125,7 @@ export APISERVER_JWT_SECRET_KEY="your_secret_key"
125125

126126
1. 克隆你的 fork 仓库到本地:
127127
```bash
128-
git clone https://github.com/your-github-username/mcp-gateway.git
128+
git clone https://github.com/your-github-username/unla.git
129129
```
130130

131131
2. 添加上游仓库:

docs/getting-started/quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export SUPER_ADMIN_PASSWORD="297df52fbc321ebf7198d497fe1c9206PlsChangeMe"
1616

1717
```bash
1818
docker run -d \
19-
--name mcp-gateway \
19+
--name unla \
2020
-p 8080:80 \
2121
-p 5234:5234 \
2222
-p 5235:5235 \
@@ -48,7 +48,7 @@ export SUPER_ADMIN_PASSWORD="297df52fbc321ebf7198d497fe1c9206PlsChangeMe"
4848

4949
```bash
5050
docker run -d \
51-
--name mcp-gateway \
51+
--name unla \
5252
-p 8080:80 \
5353
-p 5234:5234 \
5454
-p 5235:5235 \
@@ -103,8 +103,8 @@ docker run -d \
103103
1. 创建必要的目录并下载配置文件:
104104

105105
```bash
106-
mkdir -p mcp-gateway/{configs,data}
107-
cd mcp-gateway/
106+
mkdir -p unla/{configs,data}
107+
cd unla/
108108
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
109109
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
110110
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -114,7 +114,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
114114

115115
```bash
116116
docker run -d \
117-
--name mcp-gateway \
117+
--name unla \
118118
-p 8080:80 \
119119
-p 5234:5234 \
120120
-p 5235:5235 \

i18n/de/docusaurus-plugin-content-docs/current/deployment/docker.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MCP Gateway bietet zwei Bereitstellungsmethoden:
99
### Image-Registrys
1010

1111
Die Images werden in folgenden Registrys veröffentlicht:
12-
- Docker Hub: `docker.io/ifuryst/mcp-gateway-*`
12+
- Docker Hub: `docker.io/ifuryst/unla-*`
1313
- GitHub Container Registry: `ghcr.io/amoylab/unla/*`
1414
- Alibaba Cloud Container Registry: `registry.ap-southeast-1.aliyuncs.com/amoylab/unla-*`
1515

@@ -26,27 +26,27 @@ Die Images werden in folgenden Registrys veröffentlicht:
2626

2727
```bash
2828
# All-in-One-Version
29-
docker pull docker.io/ifuryst/mcp-gateway-allinone:latest
29+
docker pull docker.io/ifuryst/unla-allinone:latest
3030
docker pull ghcr.io/amoylab/unla/allinone:latest
3131
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
3232

3333
# API Server
34-
docker pull docker.io/ifuryst/mcp-gateway-apiserver:latest
34+
docker pull docker.io/ifuryst/unla-apiserver:latest
3535
docker pull ghcr.io/amoylab/unla/apiserver:latest
3636
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-apiserver:latest
3737

3838
# MCP Gateway
39-
docker pull docker.io/ifuryst/mcp-gateway-mcp-gateway:latest
39+
docker pull docker.io/ifuryst/unla-mcp-gateway:latest
4040
docker pull ghcr.io/amoylab/unla/mcp-gateway:latest
4141
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mcp-gateway:latest
4242

4343
# Mock User Service
44-
docker pull docker.io/ifuryst/mcp-gateway-mock-server:latest
44+
docker pull docker.io/ifuryst/unla-mock-server:latest
4545
docker pull ghcr.io/amoylab/unla/mock-server:latest
4646
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mock-server:latest
4747

4848
# Web Frontend
49-
docker pull docker.io/ifuryst/mcp-gateway-web:latest
49+
docker pull docker.io/ifuryst/unla-web:latest
5050
docker pull ghcr.io/amoylab/unla/web:latest
5151
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-web:latest
5252
```
@@ -84,8 +84,8 @@ Es wird empfohlen, folgende Verzeichnisse einzubinden:
8484
1. Erstellen Sie die notwendigen Verzeichnisse und laden Sie die Konfigurationsdateien herunter:
8585

8686
```bash
87-
mkdir -p mcp-gateway/{configs,data}
88-
cd mcp-gateway/
87+
mkdir -p unla/{configs,data}
88+
cd unla/
8989
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
9090
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
9191
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -103,7 +103,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
103103
```bash
104104
# Alibaba Cloud Registry verwenden (empfohlen für Server/Geräte in China)
105105
docker run -d \
106-
--name mcp-gateway \
106+
--name unla \
107107
-p 8080:80 \
108108
-p 5234:5234 \
109109
-p 5235:5235 \
@@ -118,7 +118,7 @@ docker run -d \
118118
119119
# GitHub Container Registry verwenden
120120
docker run -d \
121-
--name mcp-gateway \
121+
--name unla \
122122
-p 8080:80 \
123123
-p 5234:5234 \
124124
-p 5235:5235 \

i18n/de/docusaurus-plugin-content-docs/current/development/local-development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ git clone https://github.com/ihr-github-benutzername/mcp-gateway.git
3838

3939
Wechseln Sie in das Projektverzeichnis:
4040
```bash
41-
cd mcp-gateway
41+
cd unla
4242
```
4343

4444
Installieren Sie die Abhängigkeiten:
@@ -121,7 +121,7 @@ Bevor Sie mit der Entwicklung neuer Funktionen oder der Fehlerbehebung beginnen,
121121

122122
1. Klonen Sie Ihr Fork-Repository lokal:
123123
```bash
124-
git clone https://github.com/your-github-username/mcp-gateway.git
124+
git clone https://github.com/your-github-username/unla.git
125125
```
126126

127127
2. Fügen Sie das Upstream-Repository hinzu:

i18n/de/docusaurus-plugin-content-docs/current/getting-started/quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Ein-Klick-Bereitstellung:
1616

1717
```bash
1818
docker run -d \
19-
--name mcp-gateway \
19+
--name unla \
2020
-p 8080:80 \
2121
-p 5234:5234 \
2222
-p 5235:5235 \
@@ -48,7 +48,7 @@ Ein-Klick-Bereitstellung:
4848

4949
```bash
5050
docker run -d \
51-
--name mcp-gateway \
51+
--name unla \
5252
-p 8080:80 \
5353
-p 5234:5234 \
5454
-p 5235:5235 \
@@ -103,8 +103,8 @@ Wenn Sie eine feinere Kontrolle über die Konfiguration benötigen, können Sie
103103
1. Erstellen Sie die erforderlichen Verzeichnisse und laden Sie die Konfigurationsdateien herunter:
104104

105105
```bash
106-
mkdir -p mcp-gateway/{configs,data}
107-
cd mcp-gateway/
106+
mkdir -p unla/{configs,data}
107+
cd unla/
108108
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
109109
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
110110
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -114,7 +114,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
114114

115115
```bash
116116
docker run -d \
117-
--name mcp-gateway \
117+
--name unla \
118118
-p 8080:80 \
119119
-p 5234:5234 \
120120
-p 5235:5235 \

i18n/en/docusaurus-plugin-content-docs/current/deployment/docker.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ MCP Gateway offers two deployment methods:
99
### Image Repositories
1010

1111
Images are published to the following registries:
12-
- Docker Hub: `docker.io/ifuryst/mcp-gateway-*`
12+
- Docker Hub: `docker.io/ifuryst/unla-*`
1313
- GitHub Container Registry: `ghcr.io/amoylab/unla/*`
1414
- Alibaba Cloud Container Registry: `registry.ap-southeast-1.aliyuncs.com/amoylab/unla-*`
1515

@@ -26,27 +26,27 @@ Images are published to the following registries:
2626

2727
```bash
2828
# All-in-One version
29-
docker pull docker.io/ifuryst/mcp-gateway-allinone:latest
29+
docker pull docker.io/ifuryst/unla-allinone:latest
3030
docker pull ghcr.io/amoylab/unla/allinone:latest
3131
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
3232

3333
# API Server
34-
docker pull docker.io/ifuryst/mcp-gateway-apiserver:latest
34+
docker pull docker.io/ifuryst/unla-apiserver:latest
3535
docker pull ghcr.io/amoylab/unla/apiserver:latest
3636
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-apiserver:latest
3737

3838
# MCP Gateway
39-
docker pull docker.io/ifuryst/mcp-gateway-mcp-gateway:latest
39+
docker pull docker.io/ifuryst/unla-mcp-gateway:latest
4040
docker pull ghcr.io/amoylab/unla/mcp-gateway:latest
4141
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mcp-gateway:latest
4242

4343
# Mock User Service
44-
docker pull docker.io/ifuryst/mcp-gateway-mock-server:latest
44+
docker pull docker.io/ifuryst/unla-mock-server:latest
4545
docker pull ghcr.io/amoylab/unla/mock-server:latest
4646
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mock-server:latest
4747

4848
# Web Frontend
49-
docker pull docker.io/ifuryst/mcp-gateway-web:latest
49+
docker pull docker.io/ifuryst/unla-web:latest
5050
docker pull ghcr.io/amoylab/unla/web:latest
5151
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-web:latest
5252
```
@@ -84,8 +84,8 @@ It is recommended to mount the following directories:
8484
1. Create necessary directories and download configuration files:
8585

8686
```bash
87-
mkdir -p mcp-gateway/{configs,data}
88-
cd mcp-gateway/
87+
mkdir -p unla/{configs,data}
88+
cd unla/
8989
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
9090
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
9191
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -103,7 +103,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
103103
```bash
104104
# Using Alibaba Cloud registry (recommended for servers/devices in China)
105105
docker run -d \
106-
--name mcp-gateway \
106+
--name unla \
107107
-p 8080:80 \
108108
-p 5234:5234 \
109109
-p 5235:5235 \
@@ -118,7 +118,7 @@ docker run -d \
118118
119119
# Using GitHub Container Registry
120120
docker run -d \
121-
--name mcp-gateway \
121+
--name unla \
122122
-p 8080:80 \
123123
-p 5234:5234 \
124124
-p 5235:5235 \

i18n/en/docusaurus-plugin-content-docs/current/development/local-development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ Visit the [MCP Gateway code repository](https://github.com/amoylab/unla), click
3131
Clone your forked repository locally:
3232

3333
```bash
34-
git clone https://github.com/your-github-username/mcp-gateway.git
34+
git clone https://github.com/your-github-username/unla.git
3535
```
3636

3737
### 3. Initialize Environment Dependencies
3838

3939
Enter the project directory:
4040
```bash
41-
cd mcp-gateway
41+
cd unla
4242
```
4343

4444
Install dependencies:
@@ -121,7 +121,7 @@ Before starting to develop new features or fix bugs, please follow these steps t
121121

122122
1. Clone your fork repository locally:
123123
```bash
124-
git clone https://github.com/your-github-username/mcp-gateway.git
124+
git clone https://github.com/your-github-username/unla.git
125125
```
126126

127127
2. Add upstream repository:

0 commit comments

Comments
 (0)