(id: string | number, code: string)
| 32 | }; |
| 33 | |
| 34 | const executeBody = (id: string | number, code: string) => ({ |
| 35 | jsonrpc: "2.0" as const, |
| 36 | id, |
| 37 | method: "tools/call", |
| 38 | params: { name: "execute", arguments: { code } }, |
| 39 | }); |
| 40 | |
| 41 | const toolsListBody = (id: number) => ({ |
| 42 | jsonrpc: "2.0" as const, |
no outgoing calls
no test coverage detected