MCPcopy Create free account
hub / github.com/idosal/git-mcp / get

Method get

worker-configuration.d.ts:1446–1446  ·  view source on GitHub ↗
(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>)

Source from the content-addressed store, hash-verified

1444};
1445interface KVNamespace<Key extends string = string> {
1446 get(key: Key, options?: Partial<KVNamespaceGetOptions<undefined>>): Promise<string | null>;
1447 get(key: Key, type: "text"): Promise<string | null>;
1448 get<ExpectedValue = unknown>(key: Key, type: "json"): Promise<ExpectedValue | null>;
1449 get(key: Key, type: "arrayBuffer"): Promise<ArrayBuffer | null>;

Callers 6

handleBadgeRequestFunction · 0.65
fetchFunction · 0.65
getFromCacheFunction · 0.65
fetchFileFromR2Function · 0.65
handleRequestFunction · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected