()
| 202 | // cfworker validator does not use code generation and works in every |
| 203 | // runtime we ship to. |
| 204 | const createClient = (): Client => |
| 205 | new Client( |
| 206 | { name: "executor-mcp", version: "0.1.0" }, |
| 207 | { |
| 208 | capabilities: { elicitation: { form: {}, url: {} } }, |
| 209 | jsonSchemaValidator: new CfWorkerJsonSchemaValidator(), |
| 210 | }, |
| 211 | ); |
| 212 | |
| 213 | const connectionFromClient = (client: Client): McpConnection => ({ |
| 214 | client, |