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

Method put

worker-configuration.d.ts:463–463  ·  view source on GitHub ↗
(key: string, value: T, options?: DurableObjectPutOptions)

Source from the content-addressed store, hash-verified

461 get<T = unknown>(keys: string[], options?: DurableObjectGetOptions): Promise<Map<string, T>>;
462 list<T = unknown>(options?: DurableObjectListOptions): Promise<Map<string, T>>;
463 put<T>(key: string, value: T, options?: DurableObjectPutOptions): Promise<void>;
464 put<T>(entries: Record<string, T>, options?: DurableObjectPutOptions): Promise<void>;
465 delete(key: string, options?: DurableObjectPutOptions): Promise<boolean>;
466 delete(keys: string[], options?: DurableObjectPutOptions): Promise<number>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected