Metadata-Version: 2.4
Name: opentrust-sdk
Version: 1.0.0
Summary: Python SDK and MCP bridge for the OpenTrust tool trust registry
Author-email: Novel Hut Studios <founder@novelhut.net>
License-Expression: MIT
Project-URL: Homepage, https://github.com/Costder/opentrust
Project-URL: Repository, https://github.com/Costder/opentrust
Project-URL: Issues, https://github.com/Costder/opentrust/issues
Keywords: opentrust,ai-agents,mcp,trust-registry,tool-passports
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.28
Provides-Extra: mcp
Requires-Dist: mcp>=1.0; extra == "mcp"

# opentrust-sdk

Python SDK for OpenTrust, the trust registry and passport layer for AI-agent tools.

Use it to verify tools, fetch passports, search the registry, and expose an MCP bridge for agent runtimes.

## Install

```bash
pip install opentrust-sdk
```

For MCP support:

```bash
pip install 'opentrust-sdk[mcp]'
```

## Basic usage

```python
import asyncio
from opentrust import verify

async def main():
    result = await verify('github/file-search-mcp')
    print(result)

asyncio.run(main())
```

## MCP bridge

```bash
opentrust-mcp
```

## Repository

https://github.com/Costder/opentrust

## License

MIT
