(key: string)
| 7 | |
| 8 | export interface McpCacheStorageAdapter { |
| 9 | get(key: string): Promise<McpCacheEntry | null> |
| 10 | set(key: string, tools: McpTool[], ttlMs: number): Promise<void> |
| 11 | delete(key: string): Promise<void> |
| 12 | clear(): Promise<void> |
no outgoing calls