True if `toolName` is an MCP tool managed by this manager.
(toolName: string)
| 245 | |
| 246 | /** True if `toolName` is an MCP tool managed by this manager. */ |
| 247 | hasTool(toolName: string): boolean { |
| 248 | return /^mcp__[^_]+__/.test(toolName) |
| 249 | } |
| 250 | |
| 251 | /** Current snapshot for the TUI / status display. */ |
| 252 | snapshot(): McpSnapshot { |