← 返回
沟通协作 Key 中文

Xobni Email

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.
**Xobni.ai为AI代理提供的邮件基础设施。提供真实邮箱地址(@xobni.ai),支持REST API和MCP服务器访问。适用于AI代理发送/接收邮件、搜索收件箱、管理附件或设置邮件通知Webhook的场景。**
ghoshsanjoy78
沟通协作 clawhub v1.0.1 1 版本 99787.5 Key: 需要
★ 0
Stars
📥 1,409
下载
💾 21
安装
1
版本
#latest

概述

Xobni.ai Email Skill

Give AI agents real email addresses with full inbox functionality.

Quick Start

  1. Create agent at xobni.ai/agents/new → gets email like your-agent@xobni.ai
  2. Create API key at xobni.ai/settings/api-keys scoped to your agent
  3. 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"
      }
    }
  }
}

Core Operations

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)

ToolPurpose
---------------
get_agent_infoGet agent's name, email, slug, status
read_inboxList emails with filters (status, limit, offset)
read_emailGet full email content by ID
send_emailSend with optional attachments and reply threading
get_threadGet all emails in a conversation
list_attachmentsList attachments for an email
download_attachmentGet pre-signed download URL (15 min)
get_attachment_textExtract text from PDF/DOCX/XLSX/PPTX
mark_emailUpdate status: read/unread/starred/unstarred/archived
search_emailsSemantic search across emails + attachments
list_webhooksList configured webhooks
create_webhookCreate webhook for email.received/email.sent
delete_webhookRemove a webhook
list_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.

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-29 01:40 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Gmail

byungkyu
Gmail API 集成,托管 OAuth,支持读取、发送和管理邮件、线程、标签及草稿,适用于需要与 Gmail 交互的场景。
★ 72 📥 37,725
communication-collaboration

Himalaya

lamelas
{"answer":"通过IMAP/SMTP管理邮件的CLI。可在终端使用 `himalaya` 收发、回复、转发、搜索及整理邮件。支持多账户与MML(MIME元语言)编写邮件。"}
★ 68 📥 45,585
communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,678