MCPcopy Create free account
hub / github.com/vercel/examples / get_user_sandboxes

Function get_user_sandboxes

python/vibe-coding-ide/backend/src/run_store.py:55–57  ·  view source on GitHub ↗
(user_id: str)

Source from the content-addressed store, hash-verified

53
54
55async def get_user_sandboxes(user_id: str) -> dict[str, str]:
56 val = await cache.get(_user_sbx_key(user_id))
57 return dict(val) if isinstance(val, dict) else {}
58
59
60async def upsert_user_sandbox(user_id: str, name: str, sandbox_id: str) -> None:

Callers 3

autosync_after_fs_changeFunction · 0.90
upsert_user_sandboxFunction · 0.85
remove_user_sandboxFunction · 0.85

Calls 2

_user_sbx_keyFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected