()
| 197 | } |
| 198 | |
| 199 | async prompts(): Promise<Array<Prompt>> { |
| 200 | if (this.#closed) throw new MCPConnectionError('MCP client is closed') |
| 201 | return (await this.#client.listPrompts()).prompts |
| 202 | } |
| 203 | |
| 204 | async getPrompt( |
| 205 | name: string, |
no outgoing calls
no test coverage detected