Skip to content

AEPAgenomics Protocol

Programmable vaults, agent discovery, and milestone-based settlement on Solana

Quick Start

The MCP server isn't on npm yet — install from source:

bash
# Clone and build the workspace (root postinstall builds all 4 TS packages)
git clone https://github.com/agenomics-labs/protocol
cd protocol && npm install

# Configure for devnet
cp mcp-server/.env.devnet mcp-server/.env

# Run the MCP server (or have your MCP client launch it via stdio)
node mcp-server/dist/index.js

See Getting Started for the full Claude Desktop / Cursor wiring.

Architecture

AEP consists of three Solana programs connected via real CPI:

ProgramProgram IDPurpose
Agent Vault28Km3edbdMASVzKDnG2gHNLBgC7JQodGd9FVRAEVzYYwProgrammable wallets with spending policies
Agent RegistrypsJT29X5QAqkc9ZL3mt1YbyUsGqgdXjBU7RhEUEyNyvDiscovery and reputation
Settlement9TRVbw2dvER1zDQcxwA8Puub4fLnPGstc1GGDDLTUF95Milestone escrow and disputes

Building with AI tools

AEP ships an /llms.txt entry point following the llmstxt.org convention so AI development tools can read the protocol's public contract directly.

  • Cursor / Windsurf: add https://agenomics.xyz/llms.txt to your context.
  • Claude Code / Claude Desktop: install the MCP server per Getting Started; once connected, the tool descriptions and input schemas are authoritative.
  • ChatGPT / Claude.ai: drop the llms.txt link or paste the canonical docs into the conversation.

Per ADR-137; the v0.2 follow-up adds a build-time llms-full.txt concatenation and per-package CLAUDE.md / AGENTS.md files.