Agent Tools

Give your agent Autonomi.

One skill teaches an AI agent to read from, store on, build upon and contribute to Autonomi. The CLI is the tool it drives. The MCP server is for apps whose AI calls the network directly. Each installs in a minute; or you can have your agent do it all.

AI Driven Install

Install With a Prompt

Ask your agent to install the skill and tools to get going. It'll set up the CLI, prove it's working with a download, then walk you through the next steps.

Prefer to do it by hand? You can install them yourself with the commands below.

Prompt your agent
Set up the Autonomi agent tools for me as explained on https://developers.autonomi.com

1. Install the Autonomi skill: npx skills add WithAutonomi/skills -g -y
2. Load the skill and follow it to install the ant CLI. Confirm ant --version.
3. Prove it works with a free public read and tell me when it is working.
4. Then help me assess if Autonomi is suitable for what I'm working on, where it fits, and how to integrate with it.
Skill

Add the Skill

One line, any agent — Claude Code, Codex, Cursor, OpenCode, anything that reads Agent Skills.

The skill routes by task, installs the CLI tools needed, and is there to help whether you want to just do the basics, contribute storage to the network, get started with integration, or build full-featured apps.

Note: Prototype 0.1.4 — we're testing it with the community. Source and issues: github.com/WithAutonomi/skills.

# Installs globally and may ask which detected agents to target. Later: npx skills update autonomi
npx skills add WithAutonomi/skills -g
CLI

Get the CLI

The CLI is a client tool for downloads, uploads, wallet management and even managing nodes, so you can contribute spare storage to the network. Install it yourself for scripts and pipelines — or leave it to your agent.

Only reading? antget is a read-only client with no wallet code in it. One install line, one command.

# Installs the ant binary and network config. No sudo. Latest stable: 0.3.6
curl -fsSL https://raw.githubusercontent.com/WithAutonomi/ant-client/main/install.sh | INSTALL_DIR="$HOME/.local/bin" bash
ant --version
MCP · From Source

Install the MCP
server

The Autonomi MCP server, antd-mcp, gives an AI application tools to store, fetch and price data on the network. It talks to antd, a local daemon that holds the wallet key so the agent never does. If you'd rather sign payments yourself, the daemon holds no key at all.

From source today. A published package is on the way, but if you want the quickest route, use the skill.

Tools: 7 data · 3 wallet · 2 chunk · 7 external-signer. Full reference in the antd-mcp README.

Install the MCP server
# First, antd v0.12.1 for your OS: https://github.com/WithAutonomi/ant-sdk/releases/latest. Then (Python 3.10+, with uv):
git clone https://github.com/WithAutonomi/ant-sdk
uv tool install ./ant-sdk/antd-mcp --with "./ant-sdk/antd-py[rest]" --with "mcp<2"
claude mcp add -s user antd-autonomi -- antd-mcp
# Keep antd running. Other clients: add {"command": "antd-mcp"} to their MCP config; it finds the daemon itself.