> For the complete documentation index, see [llms.txt](https://printr.gitbook.io/printr-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://printr.gitbook.io/printr-docs/for-agents-new/for-agents.md).

# Overview

Printr provides first-class support for AI agent integration. Whether you're building autonomous trading bots, token deployment agents, or AI-powered tools, this section covers everything you need.

## llms.txt

Printr exposes a machine-readable context file for LLMs at:

```
https://printr.money/llms.txt
```

This file provides structured information about Printr's capabilities, API endpoints, and integration patterns optimized for AI consumption.

## Integration Options

### MCP Server

The [Printr MCP](/printr-docs/for-agents-new/printr-mcp.md) server gives AI agents direct access to token creation, wallet management, and chain operations through the Model Context Protocol.

```bash
npx @printr/cli setup
```

### Agent Skills

For agent runtimes that support skills:

```bash
npx skills add PrintrFi/printr-mcp
```

### SDK

For programmatic integration, use the [@printr/sdk](/printr-docs/for-developers/printr-sdk.md) TypeScript library.

## Capabilities

AI agents connected to Printr can:

* **Create tokens** across 8+ chains (Solana, Base, Ethereum, BNB, Monad, Avalanche, Mantle, Arbitrum)
* **Generate images** for token avatars using AI
* **Manage wallets** with encrypted local storage
* **Query balances** and transfer tokens
* **Track deployments** and claim fees
* **Stake tokens** and claim rewards

## Security

* Private keys never leave the local machine
* Browser-based signing with MetaMask/Phantom
* AES-256-GCM encrypted keystore
* Session isolation with 30-minute TTL


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://printr.gitbook.io/printr-docs/for-agents-new/for-agents.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
