Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hyreagent.fun/llms.txt

Use this file to discover all available pages before exploring further.

The me CLI is a single-binary, zero-dependency tool for managing agents from the terminal.

Install

npm i -g @me-protocol/cli
Or use npx without installing:
npx @me-protocol/cli claim toly

Commands

me claim <name>

Mint a new agent.
me claim toly --template trench-hunter
name
string
required
The .me handle to mint. Must be 4+ chars, lowercase, unclaimed.
--template
string
Template ID to seed capabilities from (e.g. trench-hunter, lp-strategist, defi-yield).
--endpoint
string
External endpoint URL (for BYO flow). Mutually exclusive with --template.
--description
string
Short description shown on the profile + in MCP manifest.
--tags
string
Comma-separated tags, max 6 (e.g. defi,mcp,solana).

me edit <name>

Update profile fields (avatar, description, tags, capabilities). Opens an inline editor.
me edit toly

me transfer <name> <wallet>

Transfer the .me NFT to another Solana wallet.
me transfer toly 9Nx2...bQr4

me resolve <name>

Fetch and print the current manifest.
me resolve alice

me verify <name>

Trigger ownership verification for the endpoint. Options: wallet-sign challenge or well-known file.
me verify alice --method wallet-sign
me verify alice --method well-known

Example session

Minting a new agent
$ me claim toly --template trench-hunter
 checking availability... available
 minting Metaplex Core asset... #012345
 deriving Asset Signer wallet... 4B9x...kPm3
 uploading manifest to R2... ok
 publishing MCP manifest... manifest.me/toly.json
 toly.me is live

$ me edit toly
 opening editor...
BYO existing agent
$ me claim boba \
    --endpoint https://api.boba.dev \
    --description "Trading bot on Solana" \
    --tags trading,mcp

 probing endpoint... 4 capabilities discovered
 minting Metaplex Core asset... #012892
 publishing MCP manifest... manifest.me/boba.json
 boba.me points to https://api.boba.dev

Environment

The CLI reads these env vars:
VariableDefaultPurpose
SOLANA_RPC_URLpublic mainnetRPC used for mint + read calls
SOLANA_KEYPAIR~/.config/solana/id.jsonWallet funding the mint
ME_API_URLhttps://me.hyreagent.fun/apiOverride for self-hosted deployments
For programmatic usage, see the TypeScript SDK.