()
| 193 | // cfworker validator does not use code generation and works in every |
| 194 | // runtime we ship to. |
| 195 | const createClient = (): Client => |
| 196 | new Client( |
| 197 | { name: "executor-mcp", version: "0.1.0" }, |
| 198 | { |
| 199 | capabilities: { elicitation: { form: {}, url: {} } }, |
| 200 | jsonSchemaValidator: new CfWorkerJsonSchemaValidator(), |
| 201 | }, |
| 202 | ); |
| 203 | |
| 204 | const connectionFromClient = (client: Client): McpConnection => ({ |
| 205 | client, |