(input: SessionIdRpcInput)
| 579 | } |
| 580 | |
| 581 | async cancelGoal(input: SessionIdRpcInput): Promise<GoalSnapshot> { |
| 582 | const rpc = await this.getRpc(); |
| 583 | return rpc.cancelGoal({ |
| 584 | sessionId: input.sessionId, |
| 585 | agentId: this.interactiveAgentId, |
| 586 | }); |
| 587 | } |
| 588 | |
| 589 | async listMcpServers(input: SessionIdRpcInput): Promise<readonly McpServerInfo[]> { |
| 590 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected