* 列出资源
(sessionId: string)
| 117 | * 列出资源 |
| 118 | */ |
| 119 | async listResources(sessionId: string): Promise<MCPResource[]> { |
| 120 | const response = await this.sendRequest(sessionId, { |
| 121 | method: 'resources/list', |
| 122 | params: {}, |
| 123 | }); |
| 124 | |
| 125 | return response.resources || []; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * 读取资源内容 |
no test coverage detected