Skip to main content
Anima gives your AI agents a real identity on the internet. Provision email addresses, issue virtual cards with spending controls, store secrets in an encrypted vault, assign phone numbers, and enable agent-to-agent task delegation — all through a single unified API.

Quick Start

Give your agent an email address in under 5 minutes.

Issue Cards

Issue virtual cards with per-agent spending controls.

Credential Vault

Store secrets and credentials securely for your agents.

SDKs

TypeScript, Python, and Go client libraries.

What you can build

Agent Email

Real inbound and outbound email for every agent, with custom domain support.

Virtual Cards

Issue Visa/Mastercard cards with MCC rules, velocity limits, and pre-approval logic.

Encrypted Vault

AES-256-GCM encrypted credential storage backed by Bitwarden.

Phone & SMS

Provision phone numbers and send SMS from any agent.

MCP Server

Connect Anima to Claude Desktop and other MCP clients — 77+ tools.

A2A Protocol

Delegate tasks between agents using authenticated structured messaging.

Get started in minutes

1

Install the SDK

npm install @anima-labs/sdk
# or
pip install anima-labs
2

Create your first agent

import { Anima } from "@anima-labs/sdk";
const anima = new Anima({ apiKey: "ak_..." });
const agent = await anima.agents.create({ name: "My Agent" });
3

Send your first email

await anima.messages.sendEmail({
  agentId: agent.id,
  to: "user@example.com",
  subject: "Hello from Anima",
  body: "Sent by an AI agent.",
});
4

Explore more capabilities

Browse Platform, Cards & Payments, or connect via MCP.