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 VaultD2y1dEi4dj1pcxw6GvkFWX34RRbuFJCaGWdPNJAasQ5qProgrammable wallets with spending policies
Agent Registry26KETQPxeMmbakxpVbUEpQBQmVgpabHAweTHBRgBHjW7Discovery and reputation
SettlementAwjdsNvhR2uwPNbU6F2fsYB33VcNGL5XaANdgsyvZDiaMilestone 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.