Skip to content

Commit 675c86d

Browse files
author
cloud-sdk-js
committed
fix: Changes from lint
1 parent 0a6f5b4 commit 675c86d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sample-code/src/tutorials/mcp/weather-mcp-server.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ server.registerTool(
1515
{
1616
description: 'Tool to fetch weather details for a specific city',
1717
inputSchema: {
18-
city: z.string().meta({ description: 'The name of the city to get the weather for' })
18+
city: z
19+
.string()
20+
.meta({ description: 'The name of the city to get the weather for' })
1921
}
2022
},
2123
async ({ city }) => {

0 commit comments

Comments
 (0)