# Send Xobni Email to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xobni",
    "name": "Xobni Email",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ghoshsanjoy78/xobni",
    "canonicalUrl": "https://clawhub.ai/ghoshsanjoy78/xobni",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/xobni",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xobni",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/xobni"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xobni",
    "downloadUrl": "https://openagent3.xyz/downloads/xobni",
    "agentUrl": "https://openagent3.xyz/skills/xobni/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xobni/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xobni/agent.md"
  }
}
```
## Documentation

### Xobni.ai Email Skill

Give AI agents real email addresses with full inbox functionality.

### Quick Start

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

### API Key Scoping

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

### MCP Connection

URL: https://api.xobni.ai/mcp/
Transport: Streamable HTTP
Auth: Authorization: Bearer YOUR_API_KEY

### Claude Desktop Config

{
  "mcpServers": {
    "xobni": {
      "url": "https://api.xobni.ai/mcp/",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

### Read Inbox

curl -H "Authorization: Bearer $XOBNI_KEY" \\
  "https://api.xobni.ai/api/v1/emails?status=received&limit=20"

### Send Email

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"}'

### Send with Attachments

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"}]
  }'

### Search (Semantic)

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}'

### Get Agent Info

curl -H "Authorization: Bearer $XOBNI_KEY" \\
  "https://api.xobni.ai/api/v1/agents"

### Check Storage Usage

curl -H "Authorization: Bearer $XOBNI_KEY" \\
  "https://api.xobni.ai/api/v1/emails/storage-usage"

### MCP Tools (14 total)

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

### Webhooks

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.

### API Reference

See references/api.md for full endpoint documentation.

### Key Concepts

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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ghoshsanjoy78
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/xobni)
- [Send to Agent page](https://openagent3.xyz/skills/xobni/agent)
- [JSON manifest](https://openagent3.xyz/skills/xobni/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/xobni/agent.md)
- [Download page](https://openagent3.xyz/downloads/xobni)