Skip to content

Commit 3b84a8f

Browse files
committed
Fixes MCP indexing
Signed-off-by: Marcos Candeia <marrcooos@gmail.com>
1 parent 53e8d61 commit 3b84a8f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/mesh/src/auth/org.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ function getDefaultOrgMcps(): MCPCreationSpec[] {
5050
name: tool.name,
5151
inputSchema: z.toJSONSchema(
5252
tool.inputSchema as Parameters<typeof z.toJSONSchema>[0],
53+
{ unrepresentable: "any" },
5354
),
5455
outputSchema: tool.outputSchema
5556
? z.toJSONSchema(
5657
tool.outputSchema as Parameters<typeof z.toJSONSchema>[0],
58+
{ unrepresentable: "any" },
5759
)
5860
: undefined,
5961
description: tool.description,

0 commit comments

Comments
 (0)