Skip to content

Commit 60a79a6

Browse files
committed
fix: Use output name McpServerUrl
1 parent 0bb9d70 commit 60a79a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/servers/book-search/cdk_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def __init__(
156156

157157
CfnOutput(
158158
self,
159-
"GatewayUrlOutput",
159+
"McpServerUrl",
160160
value=gateway.attr_gateway_url,
161161
)
162162

examples/servers/dictionary/lib/dictionary-mcp-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export class DictionaryMcpServer extends cdk.Stack {
134134
value: gateway.attrGatewayIdentifier,
135135
});
136136

137-
new cdk.CfnOutput(this, "GatewayUrlOutput", {
137+
new cdk.CfnOutput(this, "McpServerUrl", {
138138
value: gateway.attrGatewayUrl,
139139
});
140140
}

examples/servers/zen/cdk_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(
100100

101101
CfnOutput(
102102
self,
103-
"GatewayUrlOutput",
103+
"McpServerUrl",
104104
value=gateway.attr_gateway_url,
105105
)
106106

0 commit comments

Comments
 (0)