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

Commit 2aab5b2

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

53 files changed

Lines changed: 294 additions & 294 deletions

File tree

Some content is hidden

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

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 mcp-ecosystem
3+
Copyright (c) 2025 AmoyLab
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Please try again in a few minutes, or visit:
2323
## 🛠️ About This Project
2424

2525
In the meantime, feel free to check out our GitHub repo:
26-
👉 [https://github.com/mcp-ecosystem/mcp-gateway](https://github.com/mcp-ecosystem/mcp-gateway)
26+
👉 [https://github.com/amoylab/unla](https://github.com/amoylab/unla)
2727

2828
---
2929

@@ -58,7 +58,7 @@ Docusaurus is working hard. Grab a coffee and come back soon ☕🚀
5858
## 🛠️ 项目介绍
5959

6060
在等待的这段时间,欢迎先访问我们的 GitHub 仓库:
61-
👉 [https://github.com/mcp-ecosystem/mcp-gateway](https://github.com/mcp-ecosystem/mcp-gateway)
61+
👉 [https://github.com/amoylab/unla](https://github.com/amoylab/unla)
6262

6363
---
6464

blog/2025-04-15-mcp-gateway-open-source/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ MCP Gateway 正式开源啦!
2121

2222
欢迎大家试用,也非常期待你的反馈和建议!❤️
2323

24-
> 👉GitHub: https://github.com/mcp-ecosystem/mcp-gateway
24+
> 👉GitHub: https://github.com/amoylab/unla

docs/configuration/apiserver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- PostgreSQL
1616
- MySQL
1717

18-
若有需要增加数据库支持可以到[Issue](https://github.com/mcp-ecosystem/mcp-gateway/issues)里请求支持,或者可以直接实现对应的impl并提交PR :)
18+
若有需要增加数据库支持可以到[Issue](https://github.com/amoylab/unla/issues)里请求支持,或者可以直接实现对应的impl并提交PR :)
1919

2020
```yaml
2121
database:

docs/deployment/binary.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
目前支持的linux/amd64, linux/arm64
44

5-
可以到 https://github.com/mcp-ecosystem/mcp-gateway/releases 查看下载二进制
5+
可以到 https://github.com/amoylab/unla/releases 查看下载二进制
66

77
## 运行
88
1. 创建必要的目录并下载配置文件和二进制:
99

1010
```bash
1111
mkdir -p mcp-gateway/{configs,data}
1212
cd mcp-gateway/
13-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
14-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
15-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/.env.example -o .env
13+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
14+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
15+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env
1616
```
1717

1818
### mcp-gateway
@@ -25,19 +25,19 @@ MacOS下/var/run/mcp-gateway.pid可能没权限,可以直接替换成`./data/m
2525
2626
linux/amd64
2727
```bash
28-
LATEST_VERSION=$(curl -s https://api.github.com/repos/mcp-ecosystem/mcp-gateway/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
29-
curl -sL "https://github.com/mcp-ecosystem/mcp-gateway/releases/download/${LATEST_VERSION}/mcp-gateway-linux-amd64" -o mcp-gateway
28+
LATEST_VERSION=$(curl -s https://api.github.com/repos/amoylab/unla/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
29+
curl -sL "https://github.com/amoylab/unla/releases/download/${LATEST_VERSION}/mcp-gateway-linux-amd64" -o mcp-gateway
3030
chmod +x mcp-gateway
3131
```
3232
3333
linux/arm64
3434
```bash
35-
LATEST_VERSION=$(curl -s https://api.github.com/repos/mcp-ecosystem/mcp-gateway/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
36-
curl -sL "https://github.com/mcp-ecosystem/mcp-gateway/releases/download/${LATEST_VERSION}/mcp-gateway-linux-arm64" -o mcp-gateway
35+
LATEST_VERSION=$(curl -s https://api.github.com/repos/amoylab/unla/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
36+
curl -sL "https://github.com/amoylab/unla/releases/download/${LATEST_VERSION}/mcp-gateway-linux-arm64" -o mcp-gateway
3737
chmod +x mcp-gateway
3838
```
3939

40-
https://github.com/mcp-ecosystem/mcp-gateway/releases/download/v0.2.6/mcp-gateway-linux-arm64
40+
https://github.com/amoylab/unla/releases/download/v0.2.6/mcp-gateway-linux-arm64
4141

4242
3. 使用二进制运行 MCP Gateway:
4343

docs/deployment/docker.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ MCP Gateway 提供两种部署方式:
1010

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

1616
*ghcr支持多层目录,所以组织形式会更清晰,Docker和阿里云的仓库只能一层目录,因此后面镜像名用-拼接*
1717

@@ -27,28 +27,28 @@ MCP Gateway 提供两种部署方式:
2727
```bash
2828
# All-in-One 版本
2929
docker pull docker.io/ifuryst/mcp-gateway-allinone:latest
30-
docker pull ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest
31-
docker pull registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-allinone:latest
30+
docker pull ghcr.io/amoylab/unla/allinone:latest
31+
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
3232

3333
# API Server
3434
docker pull docker.io/ifuryst/mcp-gateway-apiserver:latest
35-
docker pull ghcr.io/mcp-ecosystem/mcp-gateway/apiserver:latest
36-
docker pull registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-apiserver:latest
35+
docker pull ghcr.io/amoylab/unla/apiserver:latest
36+
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-apiserver:latest
3737

3838
# MCP Gateway
3939
docker pull docker.io/ifuryst/mcp-gateway-mcp-gateway:latest
40-
docker pull ghcr.io/mcp-ecosystem/mcp-gateway/mcp-gateway:latest
41-
docker pull registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-mcp-gateway:latest
40+
docker pull ghcr.io/amoylab/unla/mcp-gateway:latest
41+
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mcp-gateway:latest
4242

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

4848
# Web 前端
4949
docker pull docker.io/ifuryst/mcp-gateway-web:latest
50-
docker pull ghcr.io/mcp-ecosystem/mcp-gateway/web:latest
51-
docker pull registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-web:latest
50+
docker pull ghcr.io/amoylab/unla/web:latest
51+
docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-web:latest
5252
```
5353

5454
## 部署
@@ -87,9 +87,9 @@ All-in-One 部署将所有服务打包在一个容器中,适合单机部署或
8787
```bash
8888
mkdir -p mcp-gateway/{configs,data}
8989
cd mcp-gateway/
90-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
91-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
92-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/.env.example -o .env.allinone
90+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
91+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
92+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
9393
```
9494

9595
> LLMs可以按需更换,如换成千问(需要兼容OpenAI)
@@ -115,7 +115,7 @@ docker run -d \
115115
-v $(pwd)/data:/app/data \
116116
-v $(pwd)/.env.allinone:/app/.env \
117117
--restart unless-stopped \
118-
registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-allinone:latest
118+
registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
119119
120120
# 使用 GitHub Container Registry 镜像
121121
docker run -d \
@@ -130,7 +130,7 @@ docker run -d \
130130
-v $(pwd)/data:/app/data \
131131
-v $(pwd)/.env.allinone:/app/.env \
132132
--restart unless-stopped \
133-
ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest
133+
ghcr.io/amoylab/unla/allinone:latest
134134
```
135135
136136
#### 注意事项
@@ -154,8 +154,8 @@ docker run -d \
154154
3. 使用redis用于配置更新通知、OAuth存储等用途
155155

156156
大体步骤:
157-
1. 配置[docker-compose.yaml](https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/deploy/docker/multi/docker-compose.yml)
158-
2.[.env.example](https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/.env.example)拷贝并配置.env
157+
1. 配置[docker-compose.yaml](https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/deploy/docker/multi/docker-compose.yml)
158+
2.[.env.example](https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example)拷贝并配置.env
159159
3. 运行`docker compose up -d`
160160
4. 按需配置`Nginx`等LB层
161161

@@ -190,7 +190,7 @@ services:
190190
restart: always
191191

192192
web:
193-
image: ghcr.io/mcp-ecosystem/mcp-gateway/web:latest
193+
image: ghcr.io/amoylab/unla/web:latest
194194
ports:
195195
- "8080:80"
196196
- "5234:5234"
@@ -207,7 +207,7 @@ services:
207207
restart: always
208208

209209
mcp-gateway:
210-
image: ghcr.io/mcp-ecosystem/mcp-gateway/mcp-gateway:latest
210+
image: ghcr.io/amoylab/unla/mcp-gateway:latest
211211
ports:
212212
- "5235:5235"
213213
environment:
@@ -221,7 +221,7 @@ services:
221221
restart: always
222222

223223
mock-server:
224-
image: ghcr.io/mcp-ecosystem/mcp-gateway/mock-server:latest
224+
image: ghcr.io/amoylab/unla/mock-server:latest
225225
ports:
226226
- "5236:5236"
227227
environment:
@@ -352,7 +352,7 @@ SUPER_ADMIN_PASSWORD=**********
352352

353353
APISERVER_I18N_PATH=./configs/i18n
354354

355-
OAUTH2_ISSUER=https://github.com/mcp-ecosystem/mcp-gateway
355+
OAUTH2_ISSUER=https://github.com/amoylab/unla
356356
OAUTH2_STORAGE_TYPE=redis
357357
OAUTH2_REDIS_ADDR=redis:6379
358358
OAUTH2_REDIS_PASSWORD=**********

docs/development/local-development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ MCP Gateway 项目由以下几个核心组件组成:
2424

2525
### 1. 克隆项目
2626

27-
访问 [MCP Gateway 代码仓库](https://github.com/mcp-ecosystem/mcp-gateway),点击 `Fork` 按钮,将项目 fork 到你的 GitHub 账户下。
27+
访问 [MCP Gateway 代码仓库](https://github.com/amoylab/unla),点击 `Fork` 按钮,将项目 fork 到你的 GitHub 账户下。
2828

2929
### 2. 克隆到本地
3030

@@ -130,7 +130,7 @@ git clone https://github.com/your-github-username/mcp-gateway.git
130130

131131
2. 添加上游仓库:
132132
```bash
133-
git remote add upstream git@github.com:mcp-ecosystem/mcp-gateway.git
133+
git remote add upstream git@github.com:amoylab/unla.git
134134
```
135135

136136
3. 同步上游代码:

docs/getting-started/quick-start.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ docker run -d \
3030
-e SUPER_ADMIN_USERNAME=${SUPER_ADMIN_USERNAME} \
3131
-e SUPER_ADMIN_PASSWORD=${SUPER_ADMIN_PASSWORD} \
3232
--restart unless-stopped \
33-
ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest
33+
ghcr.io/amoylab/unla/allinone:latest
3434
```
3535

3636
中国境内的设备可以拉阿里云仓库的镜像并自定义模型(这边示例是千问)
@@ -63,7 +63,7 @@ docker run -d \
6363
-e SUPER_ADMIN_USERNAME=${SUPER_ADMIN_USERNAME} \
6464
-e SUPER_ADMIN_PASSWORD=${SUPER_ADMIN_PASSWORD} \
6565
--restart unless-stopped \
66-
registry.ap-southeast-1.aliyuncs.com/mcp-ecosystem/mcp-gateway-allinone:latest
66+
registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
6767
```
6868

6969
## 访问和配置
@@ -73,7 +73,7 @@ docker run -d \
7373
- 使用配置的管理员账号密码登录
7474

7575
2. 添加 MCP Server:
76-
- 复制配置文件:https://github.com/mcp-ecosystem/mcp-gateway/blob/main/configs/mock-server.yaml
76+
- 复制配置文件:https://github.com/amoylab/unla/blob/main/configs/mock-server.yaml
7777
- 在 Web 界面上点击 "Add MCP Server"
7878
- 粘贴配置并保存
7979

@@ -105,9 +105,9 @@ docker run -d \
105105
```bash
106106
mkdir -p mcp-gateway/{configs,data}
107107
cd mcp-gateway/
108-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
109-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
110-
curl -sL https://raw.githubusercontent.com/mcp-ecosystem/mcp-gateway/refs/heads/main/.env.example -o .env.allinone
108+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
109+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
110+
curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
111111
```
112112

113113
2. 使用 Docker 运行 MCP Gateway:
@@ -125,5 +125,5 @@ docker run -d \
125125
-v $(pwd)/data:/app/data \
126126
-v $(pwd)/.env.allinone:/app/.env \
127127
--restart unless-stopped \
128-
ghcr.io/mcp-ecosystem/mcp-gateway/allinone:latest
128+
ghcr.io/amoylab/unla/allinone:latest
129129
```

docusaurus.config.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ const createConfig = async function (): Promise<Config> {
3535
url: 'https://mcp.ifuryst.com',
3636
baseUrl: '/',
3737

38-
organizationName: 'mcp-ecosystem',
39-
projectName: 'mcp-gateway',
38+
organizationName: 'amoylab',
39+
projectName: 'unla',
4040

4141
onBrokenLinks: 'warn',
4242
onBrokenMarkdownLinks: 'warn',
@@ -64,15 +64,15 @@ const createConfig = async function (): Promise<Config> {
6464
path: 'docs',
6565
routeBasePath: '/',
6666
sidebarPath: require.resolve('./sidebars.ts'),
67-
editUrl: 'https://github.com/mcp-ecosystem/docs/edit/main/',
67+
editUrl: 'https://github.com/amoylab/docs/edit/main/',
6868
},
6969
blog: {
7070
showReadingTime: true,
7171
feedOptions: {
7272
type: ['rss', 'atom'],
7373
xslt: true,
7474
},
75-
editUrl: 'https://github.com/mcp-ecosystem/docs/edit/main/blog/',
75+
editUrl: 'https://github.com/amoylab/docs/edit/main/blog/',
7676
},
7777
theme: {
7878
customCss: './src/css/custom.css',
@@ -130,7 +130,7 @@ const createConfig = async function (): Promise<Config> {
130130
},
131131
{ type: 'localeDropdown', position: 'right' },
132132
{
133-
href: 'https://github.com/mcp-ecosystem/mcp-gateway',
133+
href: 'https://github.com/amoylab/unla',
134134
label: 'GitHub',
135135
position: 'right',
136136
},
@@ -189,7 +189,7 @@ const createConfig = async function (): Promise<Config> {
189189
es: 'Discusiones',
190190
hi: 'चर्चाएँ'
191191
}[locale] ?? '讨论区',
192-
href: 'https://github.com/mcp-ecosystem/mcp-gateway/discussions',
192+
href: 'https://github.com/amoylab/unla/discussions',
193193
},
194194
{
195195
label: 'Discord',
@@ -211,11 +211,11 @@ const createConfig = async function (): Promise<Config> {
211211
items: [
212212
{
213213
label: 'GitHub - MCP Gateway',
214-
href: 'https://github.com/mcp-ecosystem/mcp-gateway',
214+
href: 'https://github.com/amoylab/unla',
215215
},
216216
{
217217
label: 'GitHub - Docs',
218-
href: 'https://github.com/mcp-ecosystem/docs',
218+
href: 'https://github.com/amoylab/docs',
219219
},
220220
],
221221
},

i18n/de/docusaurus-plugin-content-blog/2025-04-15-mcp-gateway-open-source/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ Obwohl die zukünftige Marktgröße ungewiss bleibt, glaube ich, dass der Aufbau
2121

2222
Probieren Sie es aus, und ich freue mich sehr auf Ihr Feedback und Ihre Vorschläge! ❤️
2323

24-
> 👉GitHub: https://github.com/mcp-ecosystem/mcp-gateway
24+
> 👉GitHub: https://github.com/amoylab/unla

0 commit comments

Comments
 (0)