Eniyan SDK (Python)
Govern your AI agents wherever they run. This SDK wraps the Eniyan API — agent identity verification, live scope decisions, JIT credential windows, short-lived OAuth tokens, and self-reported run telemetry — so any agent loop becomes Eniyan-governed in a few lines. Eniyan never hosts or observes your loop; your agent reports metadata-only telemetry (names, scopes, token counts, outcomes — never prompts, arguments, results, or model output).
pip install eniyan
Quickstart
import os
from eniyan import EniyanClient, governed_run, EniyanScopeRefused
client = EniyanClient(
base_url="https://api.eniyantrust.com",
api_key=os.environ["ENIYAN_API_KEY"],
credential_token=os.environ["ENIYAN_CREDENTIAL_TOKEN"],
agent_id=os.environ["ENIYAN_AGENT_ID"],
)
with governed_run(client, harness="my-loop", jit=True, scopes=["crm:read"]) as run:
fetch = run.tool("fetch_accounts", scope="crm:read")(fetch_accounts)
accounts = fetch() # refused under block mode BEFORE it runs
run.model_call("claude-sonnet-5", input_tokens=1200, output_tokens=300)
On exit — success or crash — the run is finished, buffered steps are flushed, and the JIT window is completed and attested.
What each piece maps to
| SDK call | API |
|---|---|
client.verify() / client.check_scope() |
POST /v1/credentials/verify |
client.mint_token() / client.introspect() |
POST /v1/oauth/token / /introspect |
client.validate_grant() |
POST /v1/agents/credentials/validate |
client.create_task() / complete_task() / attest_task() |
JIT task lifecycle |
client.start_run() / append_steps() / finish_run() |
POST /v1/runs |
Advisory-mode scope violations do not raise — the call proceeds and the
violation is flagged server-side (GovernanceDecision.advisory_flagged).
Block mode raises EniyanScopeRefused before the tool executes.
MCP server
pip install "eniyan[mcp]" and run eniyan-mcp to expose the same
governance operations as MCP tools for Claude Code or any MCP-capable
harness. See the gated docs for configuration.
Development
pip install -e ".[dev]"
pytest
tests/integration_local.py runs the full flow against a local Eniyan
stack (docker compose up from the repo root).
eniyan-fs — govern your agents' access to local files
A second MCP server in the same package: agents reach files ONLY inside the roots you configure, every access is policy-checked and audited by Eniyan (metadata only — root aliases + path hashes, never contents, never full paths), and revoking the agent's credential is the kill switch.
{
"mcpServers": {
"eniyan-fs": {
"command": "eniyan-fs",
"env": {
"ENIYAN_API_KEY": "...",
"ENIYAN_CREDENTIAL_TOKEN": "...",
"ENIYAN_AGENT_ID": "...",
"ENIYAN_FS_ROOTS": "projects=/abs/path:notes=/abs/other"
}
}
}
}
Writes and deletes fail closed when Eniyan is unreachable; deletion is
double-gated (org scope fs:delete AND ENIYAN_FS_ALLOW_DELETE=1).
Until the PyPI release: pip install "git+https://github.com/Eniyan-Inc/eniyan.git#subdirectory=sdk/python".
eniyan-web — govern your agents' web access
A third MCP server in the same package: agents reach ONLY the websites allowlisted on the agent's Eniyan dashboard page, with per-site read / write / edit / download abilities (mapped to request effect: GET, POST, PUT/PATCH/DELETE). Every access is policy-checked and audited (metadata only — domains and URL hashes, never page content, never full URLs), page content is screened locally for prompt injections and always delivered wrapped as untrusted data, and revoking the credential is the kill switch.
{
"mcpServers": {
"eniyan-web": {
"command": "eniyan-web",
"env": {
"ENIYAN_API_KEY": "...",
"ENIYAN_CREDENTIAL_TOKEN": "...",
"ENIYAN_AGENT_ID": "..."
}
}
}
}
No sites live in the config — the allowlist is managed in the dashboard
and syncs to the gate within a minute. Writes/edits/downloads fail
closed when Eniyan is unreachable; downloads are double-gated (the
dashboard switch AND ENIYAN_WEB_ALLOW_DOWNLOADS=1 +
ENIYAN_WEB_DOWNLOAD_DIR). The real-browser engine (Playwright) is the
enterprise default and needs pip install "eniyan[browser]" plus the
dashboard engine set to browser.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eniyan-0.3.0.tar.gz.
File metadata
- Download URL: eniyan-0.3.0.tar.gz
- Upload date:
- Size: 53.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f05083782a5a42d07a0a8d8e04967626c4ab8db2c63bfd68c4c283d85df507b
|
|
| MD5 |
881ff8e7b1f4a68f02e5511fd763a249
|
|
| BLAKE2b-256 |
11036a89666180d6c4907457a916d769975e5fc9318c83c20e5aeccfe9849bcc
|
File details
Details for the file eniyan-0.3.0-py3-none-any.whl.
File metadata
- Download URL: eniyan-0.3.0-py3-none-any.whl
- Upload date:
- Size: 49.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d487927a764ccc4e989d98b37b8b7608d6be987769898dec7df86c8bcd850e72
|
|
| MD5 |
c27ea48cd979665df6ab4f839b7763ca
|
|
| BLAKE2b-256 |
84351aa27f7774b8618f7a20fa27ede1ef24b02e54605193469e779a10550bb3
|