Multi-protocol: SLIM + A2A + MCP

Encrypted channels
for AI agents

Your agents talk in plaintext. Every message visible on the wire. Add end-to-end encryption in 5 lines of Python.

quickstart.py
from skytale_sdk import SkytaleChannelManager

# Alice: create a channel and generate an invite
alice = SkytaleChannelManager(identity=b"alice")
alice.create("myorg/research/results")
token = alice.invite("myorg/research/results")

# Bob: join with the invite token
bob = SkytaleChannelManager(identity=b"bob")
bob.join_with_token("myorg/research/results", token)

# Send and receive — end-to-end encrypted
alice.send("myorg/research/results", "Hello from Alice!")
msgs = bob.receive("myorg/research/results")  # ["Hello from Alice!"]
MLS RFC 9420 End-to-end encryption standard
Multi-protocol SLIM, A2A, MCP compatible
Apache 2.0 Open source SDK & relay

Three steps to encrypted agents

1

Install

pip install skytale-sdk
That's it. No infrastructure to set up.

2

Create and invite

Create a channel, generate an invite token. Share it with any agent. Key exchange is automatic.

3

Send and receive

Messages are encrypted before they leave your agent. The relay never sees plaintext. Ever.

Why Skytale

The security layer your agents are missing.

Zero-knowledge relay

Every channel is an MLS group (RFC 9420). Messages are encrypted before they leave your SDK. The relay routes ciphertext it cannot read. Not a policy — the physics of the system.

Works with any protocol

Native adapters for SLIM, A2A (Google), and MCP. A cross-protocol bridge translates between them. Your agents get encryption regardless of what protocol they speak.

Five-minute setup

pip install skytale-sdk. Create a channel, invite an agent, send a message. No key management, no certificate provisioning, no infrastructure to deploy.

Drop-in framework support

Your agents get encrypted channels without changing frameworks.

LangGraph

pip install skytale-sdk[langgraph]

Bind skytale_send and skytale_receive tools to any ReAct agent. The LLM decides when to use them.

CrewAI

pip install skytale-sdk[crewai]

Standard BaseTool instances your crew discovers automatically. Drop into any task.

MCP Server

pip install skytale-sdk[mcp]

Run a Skytale MCP server for Claude Desktop, LangGraph, or any MCP-compatible client.

Protocol adapters for A2A, MCP Transport, SLIM, and a cross-protocol bridge are also available.

Zero-config CLI

Account creation, API keys, and JWT tokens — one command each.

# Create an account (saves API key automatically)
$ skytale signup you@example.com
Account created. API key saved to ~/.skytale/api-key

# Manage API keys
$ skytale keys create --name production
sk_live_Rk9x...

# Get a JWT for relay auth
$ skytale token
eyJhbGciOiJIUzI1NiIs...

One command setup

Creates your account and stores credentials. The SDK picks them up automatically — no env vars to manage.

Key rotation built in

Create, list, and revoke API keys instantly. JWTs are short-lived and exchanged automatically by the SDK.

Install

cargo install --path cli from the source repo.

Production-ready infrastructure

Everything you need to run encrypted agent channels in production. No ops required.

Automatic key management

MLS handles key rotation, forward secrecy, and post-compromise security. Add or remove agents at any time — cryptographic state updates automatically.

SLIM-compatible gRPC interface

Standard gRPC edge with health checks and server reflection. SLIM agents connect directly. No proto files to distribute.

TLS + JWT authentication

TLS on every tier. API keys exchange for short-lived JWTs automatically. Revoke a key and access stops immediately.

Consistent message ordering

The relay sequences MLS commits to prevent epoch conflicts. Group operations are ordered automatically so your agents never desync.

Pricing

Generous free tier. No credit card. Scale when you're ready.

Coming Soon

Pro

$29/mo

Production agent workloads

  • 1M messages included
  • Then $0.10 per 1K messages
  • MLS end-to-end encryption
  • Unlimited API keys
  • Usage reporting via CLI
  • Email support
Join Waitlist No hard caps — agents never stop
Coming Soon

Enterprise

Custom

Dedicated infrastructure & compliance

  • Unlimited messages
  • Dedicated relays
  • On-prem deployment
  • SLA guarantee
  • SOC 2 & EU AI Act ready
  • Dedicated support
Contact Us Tailored to your requirements

Start building encrypted agent channels

100K messages/month free. No credit card. No infrastructure to manage.