Skip to content

Commit b44e9f8

Browse files
chughtapanclaude
andcommitted
Fix missing comma in prompt listing causing build/test failure
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f08d62e commit b44e9f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/server/src/server

packages/server/src/server/mcp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ export class McpServer {
530530
name,
531531
title: prompt.title,
532532
description: prompt.description,
533-
arguments: prompt.argsSchema ? promptArgumentsFromStandardSchema(prompt.argsSchema) : undefined
533+
arguments: prompt.argsSchema ? promptArgumentsFromStandardSchema(prompt.argsSchema) : undefined,
534534
_meta: prompt._meta
535535
};
536536
})

0 commit comments

Comments
 (0)