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