Skip to main content

Integrations

Treeship integrates with popular AI agent frameworks. Add verification with minimal code changes.

Supported Frameworks

Generic Integration

Don’t see your framework? The Python SDK works with any code:
from treeship_sdk import Treeship

ts = Treeship()

# After any action
attestation = ts.attest(
    agent="my-agent",
    action="Did something important",
    inputs_hash=ts.hash({"relevant": "data"})
)

print(attestation.verify_url)

What Gets Sent

Sent to TreeshipStays local
Agent nameActual data
Action descriptionPII
Hash of inputs (SHA-256)Files
TimestampEverything else
You control the action description. Sensitive data never leaves your server — only a hash that proves it existed.

MCP Support

Treeship offers an MCP (Model Context Protocol) server for agents that support it:
npx -y treeship-mcp
This exposes treeship_attest, treeship_verify, and treeship_list tools to any MCP-compatible agent.

Request an Integration

Need a specific framework? Open an issue or contact us.