Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Email infrastructure for AI agents via Xobni.ai. Provides real email addresses (@xobni.ai) with REST API and MCP server access. Use when an AI agent needs to send/receive email, search inbox, manage attachments, or set up webhooks for email notifications.
Email infrastructure for AI agents via Xobni.ai. Provides real email addresses (@xobni.ai) with REST API and MCP server access. Use when an AI agent needs to send/receive email, search inbox, manage attachments, or set up webhooks for email notifications.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Give AI agents real email addresses with full inbox functionality.
Create agent at xobni.ai/agents/new โ gets email like your-agent@xobni.ai Create API key at xobni.ai/settings/api-keys scoped to your agent Connect via REST API or MCP
Each API key is scoped to a single agent. The key can only access that agent's emails, threads, attachments, and webhooks. No need to pass account_id or agent_id โ they're auto-resolved from your key. What scoped keys can do: Read, send, search, and manage emails Create and manage webhooks View agent info and storage usage What scoped keys cannot do: Access other agents' data (returns 403) Create or delete agents Manage API keys or billing
URL: https://api.xobni.ai/mcp/ Transport: Streamable HTTP Auth: Authorization: Bearer YOUR_API_KEY
{ "mcpServers": { "xobni": { "url": "https://api.xobni.ai/mcp/", "headers": { "Authorization": "Bearer YOUR_API_KEY" } } } }
curl -H "Authorization: Bearer $XOBNI_KEY" \ "https://api.xobni.ai/api/v1/emails?status=received&limit=20"
curl -X POST -H "Authorization: Bearer $XOBNI_KEY" \ -H "Content-Type: application/json" \ "https://api.xobni.ai/api/v1/emails/send" \ -d '{"to":["recipient@example.com"],"subject":"Hello","body_text":"Message here"}'
curl -X POST -H "Authorization: Bearer $XOBNI_KEY" \ -H "Content-Type: application/json" \ "https://api.xobni.ai/api/v1/emails/send" \ -d '{ "to":["recipient@example.com"], "subject":"Report", "body_text":"See attached.", "attachments":[{"filename":"report.pdf","data":"<base64>","content_type":"application/pdf"}] }'
curl -X POST -H "Authorization: Bearer $XOBNI_KEY" \ -H "Content-Type: application/json" \ "https://api.xobni.ai/api/v1/search" \ -d '{"query":"invoices from last month","limit":10}'
curl -H "Authorization: Bearer $XOBNI_KEY" \ "https://api.xobni.ai/api/v1/agents"
curl -H "Authorization: Bearer $XOBNI_KEY" \ "https://api.xobni.ai/api/v1/emails/storage-usage"
ToolPurposeget_agent_infoGet agent's name, email, slug, statusread_inboxList emails with filters (status, limit, offset)read_emailGet full email content by IDsend_emailSend with optional attachments and reply threadingget_threadGet all emails in a conversationlist_attachmentsList attachments for an emaildownload_attachmentGet pre-signed download URL (15 min)get_attachment_textExtract text from PDF/DOCX/XLSX/PPTXmark_emailUpdate status: read/unread/starred/unstarred/archivedsearch_emailsSemantic search across emails + attachmentslist_webhooksList configured webhookscreate_webhookCreate webhook for email.received/email.sentdelete_webhookRemove a webhooklist_webhook_deliveriesView webhook delivery history
Set up real-time notifications when emails arrive or are sent: curl -X POST -H "Authorization: Bearer $XOBNI_KEY" \ -H "Content-Type: application/json" \ "https://api.xobni.ai/api/v1/event-hooks" \ -d '{ "url": "https://your-endpoint.com/webhook", "events": ["email.received"], "description": "Email notifications" }' Supported events: email.received, email.sent. Payloads include email metadata and a 200-character snippet. Use read_email to fetch full content.
See references/api.md for full endpoint documentation.
Agent-scoped keys: Each key works with one agent only. Auto-resolves IDs. Semantic search: Natural language queries across email bodies AND attachments (PDF, DOCX, etc.) Attachments: Send files via base64 (max 10 files, 10MB total) Webhooks: Real-time notifications for email events via n8n, Zapier, Make, or any HTTP endpoint.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.