Skip to content

Commit 23fd421

Browse files
authored
chore: Relabel menu and items (#2175)
* relabeling * continue relabeling * fmt * integrations to connections * Update terminology from "gateway" to "Assistant" across documentation and codebase for consistency * rewording
1 parent aaf59a8 commit 23fd421

35 files changed

Lines changed: 150 additions & 150 deletions

apps/docs/client/src/content/en/mcp-mesh/api-reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Proxies MCP requests to a single upstream connection.
2121
### Gateway (virtual server)
2222

2323
- `POST /mcp/gateway/:gatewayId`
24-
- `POST /mcp/gateway` (default gateway; requires `x-org-id` or `x-org-slug`)
24+
- `POST /mcp/gateway` (default Hub; requires `x-org-id` or `x-org-slug`)
2525

2626
Aggregates tools/resources/prompts across multiple connections.
2727

apps/docs/client/src/content/en/mcp-mesh/concepts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ icon: BookOpen
99
- **Organization**: the top-level tenant boundary. Everything (connections, gateways, logs) is org-scoped.
1010
- **Members**: users invited into an organization.
1111
- **Roles**: role assignments for members, used by access control checks.
12-
- **MCP Server (Connection)**: a configured upstream MCP endpoint (usually HTTP), optionally with stored credentials.
13-
- **Gateway**: a virtual MCP server that aggregates multiple connections into a single MCP surface.
12+
- **Connection**: a configured upstream MCP endpoint (usually HTTP), optionally with stored credentials.
13+
- **Hub**: a virtual MCP server that aggregates multiple connections into a single MCP surface.
1414
- **Tool call**: a `tools/call` request routed through the Mesh to a downstream MCP server (or via a gateway).
1515
- **Monitoring log**: a record of a tool call (inputs, outputs, duration, error), used for debugging and ops.
1616

@@ -25,7 +25,7 @@ icon: BookOpen
2525
2. The client calls either:
2626
- the **Management MCP** (admin tools), or
2727
- a **Proxy endpoint** (one connection), or
28-
- a **Gateway endpoint** (aggregated tools/resources/prompts).
29-
3. The Mesh authorizes, loads credentials, proxies to the downstream MCP server(s), and logs monitoring events.
28+
- a **Hub endpoint** (aggregated tools/resources/prompts).
29+
3. The Mesh authorizes, loads credentials, proxies to the downstream Connection(s), and logs monitoring events.
3030

3131

apps/docs/client/src/content/en/mcp-mesh/connect-clients.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ There are two common ways to connect clients to the Mesh:
1717

1818
- **Management MCP**: `POST /mcp`
1919
- **Connection proxy**: `POST /mcp/:connectionId`
20-
- **Gateway (virtual server)**: `POST /mcp/gateway/:gatewayId` (or omit `:gatewayId` to use the org default gateway with headers)
20+
- **Hub (virtual server)**: `POST /mcp/gateway/:gatewayId` (or omit `:gatewayId` to use the org default Hub with headers)
2121

2222
<Callout type="tip">
23-
If your goal is a single MCP URL for a curated tool surface, use **Gateways**. If you want a direct pipe to one upstream MCP, use **Connection proxy**.
23+
If your goal is a "single MCP URL" for a curated tool surface, use **Hubs**. If you want a direct pipe to one upstream MCP, use **Connection proxy**.
2424
</Callout>
2525

2626
## Authentication quick notes

apps/docs/client/src/content/en/mcp-mesh/mcp-gateways.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
---
2-
title: MCP Gateways
2+
title: Hubs
33
description: Publish a virtual MCP server that aggregates tools/resources/prompts from multiple connections
44
icon: Waypoints
55
---
66

77
import Callout from "../../../components/ui/Callout.astro";
88

9-
## What is a gateway?
9+
## What is a Hub?
1010

11-
An **MCP Gateway** is a **virtual MCP server** that aggregates multiple connections into a single MCP surface:
11+
A **Hub** is a **virtual MCP server** that aggregates multiple connections into a single MCP surface:
1212

1313
- tools (`tools/list`, `tools/call`)
1414
- resources (`resources/list`, `resources/read`)
1515
- prompts (`prompts/list`, `prompts/get`)
1616

17-
This is how you create a curated endpoint for clients without exposing every tool from every connected server.
17+
This is how you create a curated endpoint for clients without exposing every tool from every connected integration.
1818

1919
## Endpoint
2020

2121
- `POST /mcp/gateway/:gatewayId`
2222

23-
You can also omit `:gatewayId` and rely on the organizations default gateway by providing one of these headers:
23+
You can also omit `:gatewayId` and rely on the organization's default Hub by providing one of these headers:
2424

2525
- `x-org-id`, or
2626
- `x-org-slug`
@@ -32,7 +32,7 @@ You can also omit `:gatewayId` and rely on the organization’s default gateway
3232

3333
## Tool exposure strategies
3434

35-
Gateways also control **how tools are exposed** to clients (useful when tool surfaces get large).
35+
Hubs also control **how tools are exposed** to clients (useful when tool surfaces get large).
3636
These strategies ship by default:
3737

3838
### Passthrough (baseline)
@@ -56,14 +56,14 @@ These strategies ship by default:
5656
- `GATEWAY_RUN_CODE` (run JS in a sandbox that can call tools)
5757
- Goal: reduce tool exposure overhead on large surfaces by shifting work into a constrained runtime.
5858

59-
## The default gateway (auto-created per org)
59+
## The default Hub (auto-created per org)
6060

61-
Every new organization gets a **Default Gateway**:
61+
Every new organization gets a **Default Hub**:
6262

6363
- **Strategy**: `passthrough`
6464
- **Mode**: `exclusion`
6565
- **Default exclusions**: the built-in **Mesh MCP** connection (management tools) and the **Store/Registry** connection are excluded by default
66-
- **Default behavior**: everything else in the org is included — so as you connect MCP servers, this endpoint becomes the all tools in the org” gateway
66+
- **Default behavior**: everything else in the org is included — so as you connect Integrations, this endpoint becomes the "all tools in the org" Hub
6767

6868
This is the endpoint most teams use as the single aggregated MCP surface for an org.
6969

apps/docs/client/src/content/en/mcp-mesh/mcp-servers.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: MCP Servers
2+
title: Connections
33
description: Register upstream MCP servers, store credentials, and proxy requests securely
44
icon: Server
55
---
@@ -8,14 +8,14 @@ import Callout from "../../../components/ui/Callout.astro";
88

99
## What is a connection?
1010

11-
An **MCP Server** in the Mesh is a configured upstream MCP endpoint (typically HTTP). The Mesh stores its configuration and (optionally) credentials, and can then proxy MCP requests to it.
11+
A **Connection** in the Mesh is a configured upstream MCP endpoint (typically HTTP). The Mesh stores its configuration and (optionally) credentials, and can then proxy MCP requests to it.
1212

1313
## In the UI
1414

15-
Go to **MCP Servers** to:
15+
Go to **Connections** to:
1616

17-
- browse connected servers
18-
- add a new server (**Connect MCP Server**)
17+
- browse connected connections
18+
- create a new connection (**Create Connection**)
1919
- search and manage existing connections
2020

2121
## Proxying to a single connection
@@ -33,7 +33,7 @@ The Mesh will:
3333
5. log a monitoring event
3434

3535
<Callout type="info">
36-
If you need a single aggregated endpoint for multiple servers, use [MCP Gateways](/en/mcp-mesh/mcp-gateways) instead.
36+
If you need a single aggregated endpoint for multiple connections, use [Hubs](/en/mcp-mesh/mcp-gateways) instead.
3737
</Callout>
3838

3939

apps/docs/client/src/content/en/mcp-mesh/overview.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ The Mesh centralizes these concerns once, so you can operate MCP traffic like an
4242

4343
## Product surfaces (what you can do today)
4444

45-
- **Store**: browse a catalog of MCP servers you can connect to (default: the official MCP Registry).
46-
- **MCP Servers**: connect and manage MCP servers (HTTP MCP endpoints).
47-
- **MCP Gateways**: publish a curated virtual MCP server that aggregates tools/resources/prompts from multiple connections.
45+
- **Store**: browse a catalog of Connections you can connect to (default: the official MCP Registry).
46+
- **Connections**: connect and manage MCP servers (HTTP MCP endpoints).
47+
- **Hubs**: publish a curated "virtual MCP server" that aggregates tools/resources/prompts from multiple connections.
4848
- **API Keys**: create scoped keys with explicit tool permissions.
4949
- **Members & Roles**: invite teammates and manage roles + permissions.
5050
- **Monitoring**: tool-call logs, errors, latency, filtering, and streaming.

apps/docs/client/src/content/en/mcp-mesh/quickstart.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Quickstart
3-
description: Run Mesh locally, connect an MCP server, create a gateway, and verify monitoring
3+
description: Run Mesh locally, connect an Integration, create a Hub, and verify monitoring
44
icon: Rocket
55
---
66

@@ -71,25 +71,25 @@ The application will be available at `http://localhost:8080`.
7171

7272
**More details:** [Kubernetes: Helm Chart](/en/mcp-mesh/deploy/kubernetes-helm-chart)
7373

74-
## 2) Connect an MCP server
74+
## 2) Create a Connection
7575

7676
When you open a new organization, the Mesh will prompt you to:
7777

7878
- **Browse Store** or
79-
- **Connect MCP Server** directly - provide the MCP URL (HTTP endpoint) and any required credentials
79+
- **Create Connection** directly - provide the MCP URL (HTTP endpoint) and any required credentials
8080

81-
The **Store** is a catalog of MCP servers you can connect to. By default, the Store points to the **official MCP Registry**.
81+
The **Store** is a catalog of Connections you can connect to. By default, the Store points to the **official MCP Registry**.
8282

8383
## 3) Create an organization and invite members
8484

8585
- Go to **Members**
8686
- Invite teammates
8787
- Assign roles (Admin/User) as needed
8888

89-
## 4) Create an MCP Gateway (virtual server)
89+
## 4) Create a Hub (virtual server)
9090

91-
- Go to **MCP Gateways**
92-
- Click **Create MCP Gateway**
91+
- Go to **Hubs**
92+
- Click **Create Hub**
9393
- Choose **Include** (only selected connections/tools) or **Exclude** (everything except the exclusions)
9494

9595
## 5) Generate an API key for a client

apps/docs/client/src/content/pt-br/mcp-mesh/concepts.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ icon: BookOpen
99
- **Organization**: limite de tenancy. Tudo (connections, gateways, logs) é escopado por organização.
1010
- **Members**: pessoas dentro da organização.
1111
- **Roles**: papéis dentro da org (usados para permissões).
12-
- **MCP Server (Connection)**: um endpoint MCP upstream configurado (normalmente HTTP), com credenciais no vault quando necessário.
13-
- **Gateway**: um MCP virtual que agrega múltiplas connections em um único endpoint.
12+
- **Conexão**: um endpoint MCP upstream configurado (normalmente HTTP), com credenciais no vault quando necessário.
13+
- **Hub**: um "MCP virtual" que agrega múltiplas connections em um único endpoint.
1414
- **Tool call**: uma requisição `tools/call` roteada pelo Mesh para uma connection (ou via gateway).
1515
- **Monitoring log**: registro de tool call (inputs/outputs, duração, erro) para debug e operação.
1616

@@ -25,7 +25,7 @@ icon: BookOpen
2525
2. O cliente chama um endpoint:
2626
- **Management MCP** (admin tools), ou
2727
- **Proxy** (uma connection), ou
28-
- **Gateway** (agregação).
29-
3. O Mesh autoriza, carrega credenciais, faz proxy para o MCP upstream e registra monitoring.
28+
- **Hub** (agregação).
29+
3. O Mesh autoriza, carrega credenciais, faz proxy para a Conexão upstream e registra monitoring.
3030

3131

apps/docs/client/src/content/pt-br/mcp-mesh/connect-clients.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ Para um client falar com o Mesh, ele precisa de:
1313

1414
## Recomendações práticas
1515

16-
- Use um **Gateway** como endpoint principal do seu time (ele vira o surface curado/estável).
17-
- Comece com poucas connections e um gateway simples; aumente a curadoria conforme o número de tools crescer.
16+
- Use um **Hub** como endpoint principal do seu time (ele vira o "surface" curado/estável).
17+
- Comece com poucas connections e um Hub simples; aumente a curadoria conforme o número de tools crescer.
1818

1919
## Onde encontrar os endpoints
2020

2121
No Mesh, você encontra:
2222

23-
- **Gateways** → URL do gateway (o endpoint recomendado para clients)
24-
- **Connections / MCP Servers** → URL de proxy da connection (útil para debug/isolamento)
23+
- **Hubs** → URL do Hub (o endpoint recomendado para clients)
24+
- **Connections / Conexões** → URL de proxy da connection (útil para debug/isolamento)
2525

2626
## Dica: debug rápido
2727

2828
Se uma tool falhar, use:
2929

3030
- **Monitoring** para ver o erro e o payload, e
31-
- execute novamente via gateway vs connection para confirmar se o problema é de agregação ou do upstream.
31+
- execute novamente via Hub vs connection para confirmar se o problema é de agregação ou do upstream.
3232

3333

apps/docs/client/src/content/pt-br/mcp-mesh/mcp-gateways.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: MCP Gateways
3-
description: Gateways agregam e curam tools de múltiplas connections em um único endpoint MCP
2+
title: Hubs
3+
description: Hubs agregam e curam tools de múltiplas connections em um único endpoint MCP
44
icon: Share2
55
---
66

7-
## O que é um Gateway?
7+
## O que é um Hub?
88

9-
Um **MCP Gateway** é um MCP virtual: ele expõe um único endpoint MCP que agrega tools/resources/prompts de múltiplas **connections**.
9+
Um **Hub** é um "MCP virtual": ele expõe um único endpoint MCP que agrega tools/resources/prompts de múltiplas **connections**.
1010

1111
## Estratégias de exposição de tools
1212

13-
Gateways também controlam **como as tools são expostas** (útil quando o surface cresce).
13+
Hubs também controlam **como as tools são expostas** (útil quando o surface cresce).
1414
Essas estratégias vêm por padrão:
1515

1616
### Passthrough (baseline)
@@ -34,14 +34,14 @@ Essas estratégias vêm por padrão:
3434
- **GATEWAY_RUN_CODE** (executa JS em um sandbox que pode chamar tools)
3535
- Objetivo: reduzir overhead de exposição em superfícies grandes movendo parte do trabalho para um runtime controlado.
3636

37-
## O Default Gateway (criado automaticamente por org)
37+
## O Default Hub (criado automaticamente por org)
3838

39-
Toda organização nova recebe um **Default Gateway**:
39+
Toda organização nova recebe um **Default Hub**:
4040

4141
- **Strategy**: `passthrough`
4242
- **Mode**: `exclusion`
4343
- **Exclusões padrão**: a connection interna **Mesh MCP** (tools de administração) e a connection da **Store/Registry** são excluídas por padrão
44-
- **Comportamento**: todo o resto entra automaticamente — então, conforme você conecta MCP servers, esse endpoint vira o gateway “com todas as tools da org
44+
- **Comportamento**: todo o resto entra automaticamente — então, conforme você conecta Conexões, esse endpoint vira o Hub "com todas as tools da org"
4545

4646
Esse é o endpoint que muitos times usam como a superfície MCP principal da organização.
4747

0 commit comments

Comments
 (0)