When an application is created, Abstraxn automatically provisions the platform stack for that app:
Service
Purpose
Bundler
Account abstraction user operations
Paymaster
Gas sponsorship
Relayer
Transaction relay
Wallets
Embedded / server wallet infrastructure
Agent Kit (Agentic Stack)
Agents, MCP tools, spend ledger
You do not manually enable each service before using Agent Kit. The Agentic Stack menu appears under Configurations for every provisioned app.Optional: you can still open Register New Agent Kit to set a display name if your UI shows a registration step; the underlying agent_apps row is created during app provisioning.
Agents appear here after your backend calls @abstraxn/agent-kitcreateAgent() (or Agent Kit REST POST /agents). The dashboard does not create agents by itself.
Column
Meaning
Agent name & identity
Display name + userIdentity (your user id, email, etc.)
Status
Active / inactive
EVM / Solana address
Wallets provisioned when the agent was created
Created at
Agent row timestamp
Active toggle
Enable or disable the agent
Click a row to open the agent panel with two tabs:
Shows whether the agent is registered on-chain and surfaces trust metadata for operators:
Global agent identifier — portable CAIP-style id after registration.
Per-chain registrations — on-chain agent id, owner address, identity registry, transaction hash, and block explorer links.
Controllers and wallets — EVM/Solana addresses linked to the agent.
Registration is initiated from your backend (SDK registerAgentIdentity or Kit identity/prepare + confirm), not from the dashboard alone. Supported identity chainId values are listed in ERC-8004 agent identity.
Audit trail of MCP tool calls for that agent — tool name, status (ok, error, payment_required, etc.), duration, and expandable request/response details. Useful for debugging LLM tool loops and x402 retries.Logs populate after the agent runs MCP tools through your integration with the correct agent_id.
The Tools page calls MCP tools/list with your application API key and shows the live catalog your LLM can invoke. Names and count change as Agent Kit is updated — the UI always reflects the latest server response. Use View Schema on each card when wiring arguments in your LLM or backend.See MCP tools reference and x402 payments for execution details.