Skip to main content

Agent authentication SDK for secure service-to-service communication

Project description

Authed

Identity and authentication for AI Agents

license MIT PRs welcome support PyPI Downloads

Authed | Docs

Overview

Authed is an identity and authentication system built specifically for AI agents. As AI agents become active participants on the internet, they need secure, scalable ways to identify themselves and authenticate with each other across different systems and organizations.

Traditional authentication methods like OAuth and API keys were designed for human users and applications, forcing agents to rely on static credentials that don't scale with the dynamic nature of AI interactions. Authed solves this problem by giving agents their own identity.

Authed is a developer-first, open-source protocol that:

  • Provides unique identities for AI agents
  • Enables secure agent-to-agent authentication across different ecosystems
  • Eliminates the need for static credentials
  • Removes human bottlenecks from authentication workflows
  • Dynamically enforces access policies between trusted entities

Quick start

Get up and running with Authed in three simple steps:

1. Register as a Provider

Head over to getauthed.dev and create an account. You'll receive:

  • A Provider ID (unique identifier for your organization)
  • A Provider Secret (keep this safe!)

2. Install the SDK

pip install authed

3. Initialize Your First Agent

# This command will:
# - Generate a secure key pair for your agent
# - Create a new agent under your provider
# - Set up your .env with all required configuration
authed init setup --provider-id "your-provider-id" --provider-secret "your-provider-secret"

That's it! Your agent is ready to authenticate. Check out the Basic Integration section below for usage examples.

Basic integration

Here's a minimal example using FastAPI:

from fastapi import FastAPI, Request
from authed import Authed, verify_fastapi, protect_httpx
import httpx

app = FastAPI()

# Initialize Authed from environment variables (configured by `authed init setup`)
auth = Authed.from_env()

# Protected endpoint
@app.post("/secure-endpoint")
@verify_fastapi
async def secure_endpoint(request: Request):
    return {"message": "Authenticated!"}

# Making authenticated requests
@app.get("/call-other-agent")
@protect_httpx()
async def call_other_agent():
    async with httpx.AsyncClient() as client:
        response = await client.post(
            "http://other-agent/secure-endpoint",
            headers={"target-agent-id": "target-agent-uuid"},
            json={"message": "Hello!"}
        )
    return response.json()

Environment setup

Configure Authed using environment variables:

# Registry and agent configuration
AUTHED_REGISTRY_URL="https://api.getauthed.dev"
AUTHED_AGENT_ID="your-agent-id"
AUTHED_AGENT_SECRET="your-agent-secret"

# Keys for signing and verifying requests
AUTHED_PRIVATE_KEY="your-private-key"
AUTHED_PUBLIC_KEY="your-public-key"

Documentation

For more detailed documentation, visit our official documentation.

Integrations

Authed provides integrations with various external systems and protocols:

Model Context Protocol (MCP)

Authed can be used as an authentication layer for the Model Context Protocol (MCP), enabling secure access to MCP servers and resources. See the MCP integration documentation for details.

Why choose Authed?

Designed for agent interactions

Authed is built specifically for the way AI agents interact - dynamic, distributed, and requiring minimal human intervention.

Secure by design

Our protocol uses robust cryptographic signatures and verification mechanisms to ensure agents only interact with trusted entities.

Scalable identity

As your ecosystem of agents grows, Authed scales with you - no need to manage ever-growing lists of API keys or credentials.

Roadmap

We are working hard on new features!

  • Self-hosted registries: Adding support and documentation for self-hosting registries
  • Registry interoperability: Expanding registry to make them interoperable, allowing agents to authenticate across registries with the same ID
  • Instance-based IDs: Adding support for instance-based identities
  • Instance binding: Adding instance binding to agent IDs
  • OpenID integration: Adding OpenID identity binding for end users
  • Enhanced permissions: Expanding the permission engine to allow more fine-grained permissions
Made with ❤️ in Warsaw, Poland and SF

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

authed-0.2.3.tar.gz (100.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

authed-0.2.3-py3-none-any.whl (135.1 kB view details)

Uploaded Python 3

File details

Details for the file authed-0.2.3.tar.gz.

File metadata

  • Download URL: authed-0.2.3.tar.gz
  • Upload date:
  • Size: 100.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for authed-0.2.3.tar.gz
Algorithm Hash digest
SHA256 82def43ee6dd7d59bfbc4c4eb87dc3958c493f11e83646adf8560dc1cea221eb
MD5 540f91c4eef5bc19998ed84a24c7e03e
BLAKE2b-256 94bcc1724086637d51065733ddfca150afce02f6c01255ae89621651446bf19a

See more details on using hashes here.

File details

Details for the file authed-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: authed-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 135.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.6

File hashes

Hashes for authed-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5e2ff7ed66147451abfb1f43e4141a6886f0abd505bf860e94f68916b952b56d
MD5 94c679029fe7ace370e0de74640dbfe7
BLAKE2b-256 525a964954203c3cbd63b16860f6bf1c1dfb877d07fc87270440aa3bb82b0d41

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page