MCPcopy Create free account
hub / github.com/LaunchPlatform/beanhub-cli / make_auth_client

Function make_auth_client

beanhub_cli/http_client.py:32–39  ·  view source on GitHub ↗
(base_url: str, token: str)

Source from the content-addressed store, hash-verified

30
31
32def make_auth_client(base_url: str, token: str) -> AuthenticatedClient:
33 return AuthenticatedClient(
34 base_url=base_url,
35 prefix="",
36 auth_header_name="access-token",
37 token=token,
38 headers=get_client_headers(),
39 )

Callers 6

ensure_auth_configFunction · 0.85
run_syncFunction · 0.85
dumpFunction · 0.85
fetch_all_emailsFunction · 0.85
dumpFunction · 0.85

Calls 2

AuthenticatedClientClass · 0.85
get_client_headersFunction · 0.85