Skip to content

Commit 874ee30

Browse files
committed
update gateway images
1 parent f181703 commit 874ee30

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

app/en/guides/create-tools/mcp-gateways/page.mdx

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ title: "MCP Gateways"
33
description: "Comprehensive guide to using MCP Gateways"
44
---
55

6+
import Image from "next/image";
7+
8+
export const IMAGE_SCALE_FACTOR = 2;
9+
export const TOOL_FILTER_LIGHT_WIDTH = 2052;
10+
export const TOOL_FILTER_LIGHT_HEIGHT = 1412;
11+
export const TOOL_FILTER_DARK_WIDTH = 2052;
12+
export const TOOL_FILTER_DARK_HEIGHT = 1412;
13+
614
# MCP Gateways
715

816
MCP Gateways are a way to connect multiple MCP Servers to your agent, application, or IDE. MCP Gateways allow you to federate the tools from multiple MCP Servers into a single collection for easier management, control, and access. You can mix and match tools from different MCP Servers in the same project, and not all tools from a MCP server need to be available to the same LLM.
@@ -13,17 +21,30 @@ To configure an MCP Gateway, go to the [MCP Gateways dashboard](https://api.arca
1321

1422
When configuring an MCP Gateway, you can select the tools you want to include in the Gateway from any MCP Servers available to the project:
1523

16-
![MCP Gateway Configuration](/images/mcp-gateway-configuration.png)
24+
<Image
25+
alt={"MCP Gateway Tool Filter"}
26+
className="max-w-full dark:hidden mt-4"
27+
src={"/images/mcp-gateway-tool-filter-light.png"}
28+
width={TOOL_FILTER_LIGHT_WIDTH / IMAGE_SCALE_FACTOR}
29+
height={TOOL_FILTER_LIGHT_HEIGHT / IMAGE_SCALE_FACTOR}
30+
/>
31+
<Image
32+
alt={"MCP Gateway Tool Filter"}
33+
className="hidden max-w-full dark:block mt-4"
34+
src={"/images/mcp-gateway-tool-filter-dark.png"}
35+
width={TOOL_FILTER_DARK_WIDTH / IMAGE_SCALE_FACTOR}
36+
height={TOOL_FILTER_DARK_HEIGHT / IMAGE_SCALE_FACTOR}
37+
/>
1738

1839
The options available when configuring an MCP Gateway are:
1940

20-
- **Name**: The name of the MCP Gateway. Informative only.
21-
- **Description**: The description of the MCP Gateway. This is useful for humans and some MCP clients may surface this information to the user.
41+
- **Name**: The name of the MCP Gateway. Informative only.
42+
- **Description**: The description of the MCP Gateway. This is useful for humans and some MCP clients may surface this information to the user.
2243
- **LLM Instructions**: Optional instructions for the LLM about how to use the MCP Gateway.
23-
- **Slug**: The slug of the MCP Gateway. This is the URL slug that will be used to access the MCP Gateway. It must be unique.
24-
- **Authentication**: The authentication mode to use for the MCP Gateway. This determines how the MCP Gateway will authenticate requests to the MCP Servers. Users will still need to authenticate to the tools within the MCP Gateway as normal.
25-
- **Arcade Auth**: To access the MCP Gateway, you'll need to authenticate with your Arcade account. We recommend using this authentication mode for MCP Gateways in development or testing phase, or for internal use when you know all the users will have Arcade accounts.
26-
- **Arcade Headers**: To access the MCP Gateway, you'll need to authenticate with your Arcade account by passing an Arcade API key in the `Authorization` header and the user ID of your end-user in the `Arcade-User-ID` header. We recommend using this authentication mode for MCP Gateways in production when your agent or application has users without Arcade accounts.
44+
- **Slug**: The slug of the MCP Gateway. This is the URL slug that will be used to access the MCP Gateway. It must be unique.
45+
- **Authentication**: The authentication mode to use for the MCP Gateway. This determines how the MCP Gateway will authenticate requests to the MCP Servers. Users will still need to authenticate to the tools within the MCP Gateway as normal.
46+
- **Arcade Auth**: To access the MCP Gateway, you'll need to authenticate with your Arcade account. We recommend using this authentication mode for MCP Gateways in development or testing phase, or for internal use when you know all the users will have Arcade accounts.
47+
- **Arcade Headers**: To access the MCP Gateway, you'll need to authenticate with your Arcade account by passing an Arcade API key in the `Authorization` header and the user ID of your end-user in the `Arcade-User-ID` header. We recommend using this authentication mode for MCP Gateways in production when your agent or application has users without Arcade accounts.
2748
- **Allowed Tools**: A selection of tools in the Arcade Tool Catalog that will be available to the MCP Gateway.
2849

2950
## How to use MCP Gateways
-317 KB
Binary file not shown.
153 KB
Loading
159 KB
Loading

0 commit comments

Comments
 (0)