Metadata-Version: 2.4
Name: ironcontext
Version: 0.1.0
Summary: Python wrapper around the IronContext Rust engine — security & optimization for MCP.
Author-email: Altrusian Computer <security@altrusian.com>
License: Apache-2.0
Project-URL: Homepage, https://github.com/altrusianco/ironcontext
Project-URL: Issues, https://github.com/altrusianco/ironcontext/issues
Keywords: mcp,model-context-protocol,security,llm,agents
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Security
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# `ironcontext` (Python wrapper)

Thin, dependency-free Python bridge to the IronContext Rust engine.

```python
import ironcontext

report = ironcontext.scan("path/to/manifest.json")
if report.has_security_issues():
    for f in report.findings:
        print(f"[{f.severity}] {f.rule} on `{f.tool}` — {f.message}")
```

Subprocess-based; works on any Python ≥ 3.9 with the `ironcontext` binary on
`$PATH`, in `./target/release/`, or pointed to via `$IRONCONTEXT_BIN`.
