MCPcopy Create free account
hub / github.com/MicrosoftDocs/mcp / LearnSessionCacheValue

Interface LearnSessionCacheValue

cli/src/mcp/cache.ts:11–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9const DEFAULT_CACHE_TTL_MS = 24 * 60 * 60 * 1000;
10
11export interface LearnSessionCacheValue {
12 endpoint: string;
13 sessionId?: string;
14 tools?: ListedTool[];
15 updatedAt: string;
16 expiresAt: string;
17}
18
19export interface LearnSessionCacheStore {
20 read(endpoint: string): Promise<LearnSessionCacheValue | undefined>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected