(result: Awaited<ReturnType<Client["callTool"]>>)
| 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; |
| 182 | |
| 183 | const toolNames = async (client: Client): Promise<string[]> => |
| 184 | (await client.listTools()).tools.map((tool) => tool.name); |
no outgoing calls
no test coverage detected