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.3.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.3.0-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: helio_client-0.3.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.3.0.tar.gz
Algorithm Hash digest
SHA256 e8dadbd81e7ce328828517b497abb3c3eb9430865ab5f7f004c7cba73855d117
MD5 fd864b5ed21b2e997b6811e3aad9478e
BLAKE2b-256 cb967b45dc6fe5366c4898370a788dab97f41a54aeecf512a9f215044e6f5738

See more details on using hashes here.

Provenance

The following attestation bundles were made for helio_client-0.3.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.3.0-py3-none-any.whl.

File metadata

  • Download URL: helio_client-0.3.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.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2130fa93cd37f9f23cf3be30c0eafc05ae32392e20bc03b3d74ac31d863bd946
MD5 f5f945cbb6e595a749d11ced711a85ec
BLAKE2b-256 955d1b1eb8cf67cab0cc0d03d24978af5606eaa1c91478bf45d790f6fe363126

See more details on using hashes here.

Provenance

The following attestation bundles were made for helio_client-0.3.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