Skip to main content

Thin Python SDK for the Helio MCP governance proxy

Project description

Helio Python SDK

Thin Python client for the Helio MCP governance proxy. Communicates with the proxy's sideband HTTP API to report evidence and context. The SDK never makes governance decisions — that is always the proxy's job.

Install

pip install helio-client

helio-client is only the PyPI distribution name — the string you pip install. This package is the Helio Python SDK; the distribution name differs solely because the bare helio name on PyPI is held by an unrelated abandoned project. It changes nothing about how you use the SDK — the import path stays helio (from helio import HelioContext), and these docs refer to it as the Helio Python SDK throughout.

Quick Start

The proxy prints a per-boot SDK token to stderr on startup (SDK token (pass as HELIO_SDK_TOKEN env var to your SDK clients): ...). Export it in the environment where your SDK client runs — the client reads HELIO_SDK_TOKEN automatically and attaches it as Authorization: Bearer <token> on every sideband call. Without it, requests to the proxy sideband are rejected with 401.

export HELIO_SDK_TOKEN=<token-from-proxy-startup-logs>
from helio import HelioContext

with HelioContext(proxy_url="http://127.0.0.1:3200") as ctx:
    # Declare what evidence this session needs
    ctx.require_evidence("orders.lookup")

    # Mark tool output as evidence under the required key
    ctx.mark_evidence("get_order", "orders.lookup", {"orderId": 42})

    # Set arbitrary session context
    ctx.set("agent_id", "support-bot")

    # Check what evidence the proxy has
    report = ctx.get_evidence_state()
    print(report.satisfied)  # ['orders.lookup']
    print(report.missing)    # []

API

HelioContext

High-level wrapper with local requirement tracking.

Method Description
mark_evidence(tool_name, evidence_key, data, ttl=300) Report evidence from a tool output
require_evidence(keys) Declare local requirements (informational)
set(key, value) Set arbitrary session context
get_evidence_state() Get evidence state with satisfied/missing comparison

HelioClient

Low-level HTTP client mapping to the sideband API.

Method Endpoint Description
mark_evidence(tool_name, evidence_key, data, ttl=300) POST /evidence Report evidence
set_context(key, value) POST /context Set session context
get_session_state() GET /session/:session_id/state Fetch combined state

HelioError

All SDK methods raise HelioError on failure instead of raw HTTP exceptions. The error includes an actionable message and an optional status_code attribute.

from helio import HelioContext, HelioError

try:
    with HelioContext() as ctx:
        ctx.mark_evidence("tool", "key", "data")
except HelioError as e:
    print(e)              # "POST /evidence failed: HTTP 400"
    print(e.status_code)  # 400

Caught error types:

  • Connection errors — proxy unreachable ("Cannot connect to proxy at ...")
  • Timeout errors — proxy did not respond in time ("Proxy request timed out: ...")
  • HTTP errors — proxy returned 4xx/5xx ("POST /evidence failed: HTTP 400")
  • Serialization errors — request payload is not JSON-serializable for POST calls (for example, {"v": object()}), normalized to HelioError with endpoint context ("Failed to serialize POST /evidence payload as JSON: ...").
  • Evidence allowlist errorsPOST /evidence may return code=evidence_key_not_in_policy_allowlist when evidence_key does not match any policy evidence.requires key. The SDK includes the rejected key and configured-key preview in HelioError for quick diagnosis.
  • Malformed sideband responses — invalid JSON or missing fields from GET /session/:session_id/state are normalized to HelioError ("... returned malformed response payload").

Configuration

Parameter Default Description
proxy_url http://127.0.0.1:3200 Sideband API base URL
session_id Auto-generated UUID Correlation key for evidence/context
timeout 5.0 HTTP request timeout in seconds

Constraints

  • Under 500 lines — governance logic belongs in the proxy, not the SDK
  • Thin client only — no caching, no policy evaluation, no decision-making
  • Python 3.10+ required

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

helio_client-0.7.0.tar.gz (15.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

helio_client-0.7.0-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

Details for the file helio_client-0.7.0.tar.gz.

File metadata

  • Download URL: helio_client-0.7.0.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for helio_client-0.7.0.tar.gz
Algorithm Hash digest
SHA256 d6c0d15fc27b9702bb95a7cf6bf0850c357215ea0458b7f72a909a18866f5439
MD5 8ee0ddadd5192eea1e3d6ef83b5349ee
BLAKE2b-256 bb3703e757e9115c41f277480ca934751c3ce3b20975556e09497ea23b8281d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for helio_client-0.7.0.tar.gz:

Publisher: release.yml on gethelio/helio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file helio_client-0.7.0-py3-none-any.whl.

File metadata

  • Download URL: helio_client-0.7.0-py3-none-any.whl
  • Upload date:
  • Size: 9.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for helio_client-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 785a7c1690a69669faa959ebbc4cd8592d1e8f36ba324e78229e87015d7325c4
MD5 ac64edaf6a3e0cdd4335ab249a1f3c4a
BLAKE2b-256 022234bcd519f1eebdfdb09283a17431fde4af6b09c2b05353144d0901b1fd60

See more details on using hashes here.

Provenance

The following attestation bundles were made for helio_client-0.7.0-py3-none-any.whl:

Publisher: release.yml on gethelio/helio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page