(result: Awaited<ReturnType<Client["callTool"]>>)
| 175 | const NO_APPS_CAPS: ClientCapabilities = {}; |
| 176 | |
| 177 | const structuredOf = (result: Awaited<ReturnType<Client["callTool"]>>): Record<string, unknown> => |
| 178 | (result.structuredContent ?? {}) as Record<string, unknown>; |
| 179 | |
| 180 | const textOf = (result: Awaited<ReturnType<Client["callTool"]>>): string => |
| 181 | (result.content as Array<{ type: string; text: string }>)[0].text; |
no outgoing calls
no test coverage detected