neus_agent_create- Open the hosted URL it returns
neus_agent_link
1. Register the Agent
Useagent-identity to register an AI or automation agent:
Main Fields
| Field | Required | Description |
|---|---|---|
agentId | Yes | Unique agent identifier (1–128 chars) |
agentWallet | Yes | Agent wallet |
agentChainRef | Yes in data, or set chain or chainId on the verification request | CAIP-2 chain for the agent wallet |
agentLabel | No | Human-readable display name (max 128 chars) |
agentType | No | ai, bot, service, automation, or agent |
description | No | Agent description (max 500 chars) |
capabilities | No | List of capabilities (max 32 items) |
instructions | No | System prompt (max 4000 chars) |
skills | No | List of skills (max 48 items) |
services | No | Service endpoints (max 16 items) |
2. Delegate Authority
Useagent-delegation to grant permissions to an agent:
agent-identityis signed by the agent wallet.agent-delegationis signed by the approving account (the wallet that matchescontrollerWalletin the payload).
Main Fields
| Field | Required | Description |
|---|---|---|
controllerWallet | Yes | Approving account; must match signer |
controllerChainRef | Yes in data, or set chain or chainId on the verification request | CAIP-2 chain for the controller |
agentWallet | Yes | Agent wallet |
agentChainRef | Yes in data, or set chain or chainId on the verification request | CAIP-2 chain for the agent |
agentId | No | Reference to registered agent |
scope | No | Permission scope (e.g., payments:x402) |
permissions | No | Allowed actions |
maxSpend | No | Whole-number string in token base units (e.g. USDC: six decimal places). Use toAgentDelegationMaxSpend from @neus/sdk. |
allowedPaymentTypes | No | Payment types allowed |
receiptDisclosure | No | summary, full, or none |
expiresAt | No | Expiration timestamp |
3. Consume the Proofs
Once both proofs exist, use MCP or API checks to confirm whether the agent is registered and what it is allowed to do. Treat the agent wallet as the anchor for related trust signals.Use Cases
| Use Case | Description |
|---|---|
| AI assistants | Register and control AI agents |
| Payment delegation | Allow agents to spend on your behalf |
| Automation | Grant scoped permissions to bots |