MCPcopy Create free account
hub / github.com/Monogatari/Monogatari / get

Method get

src/lib/FileSystemStorage.ts:77–81  ·  view source on GitHub ↗
(key: string)

Source from the content-addressed store, hash-verified

75 }
76
77 async get(key: string): Promise<unknown> {
78 const raw = await this.sendRequest('monogatari:storage-get', { key });
79
80 return this.applyGetTransformations(key, raw);
81 }
82
83 async set(key: string, value: unknown): Promise<unknown> {
84 const transformed = this.applySetTransformations(key, value);

Callers

nothing calls this directly

Calls 2

sendRequestMethod · 0.95

Tested by

no test coverage detected