Integraciones
AgentSend funciona con cualquier framework de agentes IA. Usa la API REST directamente o sigue una de las guías específicas del framework a continuación.
Descripción General
AgentSend exposes a simple REST API, so it fits naturally into any agent stack. Whether you're building with a high-level orchestration framework or calling the API by hand, the same primitives apply: create an inbox, send a message, read replies.
All integrations use the same underlying REST API. Framework-specific guides just show you how to wire it in idiomatically for each tool.
Integraciones de Frameworks
Elige tu framework para una guía paso a paso, including tool definitions, example agents, and webhook handling.
API Directa
Para cualquier framework no listado arriba, llama a la API REST directamente. Cualquier lenguaje con un cliente HTTP funciona de inmediato.
await fetch(`https://api.agentsend.io/inboxes/${inboxId}/messages`, { method: "POST", headers: { "x-api-key": process.env.AGENTSEND_API_KEY, "Content-Type": "application/json", }, body: JSON.stringify({ to: ["user@example.com"], subject: "Hello from my agent", bodyText: "This was sent by an AI agent via AgentSend.", }), });
curl -X POST https://api.agentsend.io/inboxes/$INBOX_ID/messages \ -H "x-api-key: $AGENTSEND_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "to": ["user@example.com"], "subject": "Hello from my agent", "bodyText": "This was sent by an AI agent via AgentSend." }'
See the Referencia API for the full list of endpoints, request schemas, and response examples.
Claude Code & Cursor
AgentSend exposes a /skill endpoint for MCP tool integration. Add it to your mcp_servers config and Claude Code or Cursor will automatically discover send_email, list_messages, and reply_to_thread as callable tools.
{
"mcpServers": {
"agentsend": {
"command": "npx",
"args": ["agentsend-mcp"],
"env": {
"AGENTSEND_API_KEY": "your-api-key",
"AGENTSEND_INBOX_ID": "your-inbox-id"
}
}
}
}For a full walkthrough of the MCP setup, see the Claude MCP integration guide.
Comunidad
¿Usas AgentSend con un framework no listado aquí? Nos encantaría verlo. Comparte tu integración en nuestro Discord y la destacaremos en la documentación.