AgentStack
MCP verified MIT Self-run

Agauth

mcp-architect-sis-agauth · by Architect-SIS

agAuth — Agent Authentication Standard. Open spec for persistent, portable agent identity. The identity layer MCP doesn't have.

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add mcp-architect-sis-agauth

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Agauth? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

agAuth — Agent Authentication Standard

The identity layer for autonomous AI agents.

[](spec/SPEC.md) [](spec/SPEC.md) [](LICENSE)


What is agAuth?

agAuth is an open standard for persistent, portable agent identity and authentication.

The current model of AI agent deployment requires users to manually provision credentials to every service an agent interacts with. agAuth inverts this. Agents carry their own cryptographic identity — issued by the user, scoped by the user, validated by services at runtime. The user is removed from the authentication loop.

Think of it as OAuth — but for agents, not humans.

Traditional:   User credentials → stored in vault → forwarded to every service
agAuth:        User issues Soul-Key → agent carries identity → services validate directly

Core Concepts

| Concept | Description | |---|---| | agID | Globally unique agent identifier. Format: ag-{node_id}-{sequence}-{checksum} | | Soul-Key | Ed25519 keypair constituting the agent's cryptographic identity | | agToken | Signed, scoped, time-bounded assertion the agent presents at runtime | | Issuer Node | User-controlled infrastructure that issues Soul-Keys and agTokens | | Scope | Permission set attached to an agToken — services validate before accepting actions |


How It Works

Issuance:

User → Issuer Node → generate Soul-Key → assign agID → agent ready

Runtime authentication:

1. Agent requests access to Service X
2. Service X issues challenge nonce
3. Agent signs nonce with Soul-Key
4. Agent presents agToken { agID, scope, expiry, signed_nonce }
5. Service X validates against agID public key
6. Access granted — user credentials never transmitted

Specification

  • [Full Specification →](spec/SPEC.md)
  • [agToken Schema →](spec/agtoken.schema.json)
  • [Soul-Key Schema →](spec/soulkey.schema.json)
  • [agID Format →](spec/SPEC.md#6-agid-format)

Reference Implementation

The canonical reference implementation is the DeltaZero MCP stack by Fabricated Industries LLC.

The first agAuth-identified package in production: Architect-SIS/sis-skill

  • agID: ag-4f8a2c1b-000001-9e3d
  • Framework: BCOL / DeltaZero — ΣΔ = 0

Relationship to ACP

agAuth is the identity layer. ACP is the transport layer. They are complementary:

AgentAudit  →  Is this agent safe?           (security)
agAuth      →  Is this agent who it claims?  (identity)  ← this repo
ACP         →  How do agents talk?           (transport)

Implementations

| Package | agID | Status | |---|---|---| | sis-skill | ag-4f8a2c1b-000001-9e3d | ✅ Genesis |

Building an agAuth implementation? Open a PR to add it here.


Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md). The spec is in active draft — feedback, issues, and implementation reports are welcome.


License

MIT License — Copyright 2026 Fabricated Industries LLC (ThēÆrchītēcť)


agAuth — Agent Authentication Standard — Draft v0.1 https://github.com/Architect-SIS/agauth

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.