Skip to content

Commit c8e74b4

Browse files
committed
fix: rename MCP gateway references to gateway in UI text
1 parent 8231151 commit c8e74b4

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/cli/commands/add/command.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export function registerAdd(program: Command) {
265265
// Subcommand: add gateway
266266
addCmd
267267
.command('gateway')
268-
.description('Add an MCP gateway to the project')
268+
.description('Add a gateway to the project')
269269
.option('--name <name>', 'Gateway name')
270270
.option('--description <desc>', 'Gateway description')
271271
.option('--authorizer-type <type>', 'Authorizer type: NONE or CUSTOM_JWT', 'NONE')

src/cli/tui/screens/remove/RemoveScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const REMOVE_RESOURCES = [
66
{ id: 'agent', title: 'Agent', description: 'Remove an agent from the project' },
77
{ id: 'memory', title: 'Memory', description: 'Remove a memory provider' },
88
{ id: 'identity', title: 'Identity', description: 'Remove an identity provider' },
9-
{ id: 'gateway', title: 'Gateway', description: 'Remove an MCP gateway' },
9+
{ id: 'gateway', title: 'Gateway', description: 'Remove a gateway' },
1010
{ id: 'gateway-target', title: 'Gateway Target', description: 'Remove a gateway target' },
1111
{ id: 'all', title: 'All', description: 'Reset entire agentcore project' },
1212
] as const;

src/cli/tui/screens/schema/EditSchemaScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function EditSchemaScreen(props: EditSchemaScreenProps) {
4444
{
4545
id: 'mcp',
4646
title: 'mcp.json',
47-
description: `MCP gateways and tools${mcpMissing}`,
47+
description: `Gateways and tools${mcpMissing}`,
4848
filePath: mcpPath,
4949
schema: AgentCoreMcpSpecSchema,
5050
},

src/cli/tui/screens/schema/McpGuidedEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ function McpEditorBody(props: {
631631
</Box>
632632

633633
<Box marginTop={1}>
634-
<Panel title={`MCP Gateways (${gateways.length})`} fullWidth>
634+
<Panel title={`Gateways (${gateways.length})`} fullWidth>
635635
{gateways.length === 0 ? (
636636
<Text dimColor>No gateways configured. Press A to add one.</Text>
637637
) : (

0 commit comments

Comments
 (0)