Zipppo Zipppo

Connect AI agents to your email index

Zipppo speaks MCP (Model Context Protocol).

Everything Zipppo has indexed from your mail — receipts, orders, travel, contracts — becomes a tool your AI agents can use. Claude Code, Cursor, Devin and any other MCP client can search your index, pull one message's derived content, get a deep link that opens the original in Gmail, or ask a question and get a grounded, cited answer. Agents can never send, modify, archive, or delete mail through it. The one write tool, index_message, only adds to your own index — it's how you bring your own sources (WhatsApp, Discord, SMS…) with a reader you run yourself.

Quick start

  1. Sign in and mint a personal token on the MCP page of the app.
  2. Run the one-liner (auto-configures Claude Code and Cursor):
curl -fsSL https://www.zipppo.com/mcp.sh | sh -s -- zpo_YOUR_TOKEN

Manual setup

Claude Code

claude mcp add --transport http zipppo https://mcp.zipppo.com/mcp \
  --header "Authorization: Bearer zpo_YOUR_TOKEN"

Cursor~/.cursor/mcp.json:

{
  "mcpServers": {
    "zipppo": {
      "url": "https://mcp.zipppo.com/mcp",
      "headers": { "Authorization": "Bearer zpo_YOUR_TOKEN" }
    }
  }
}

Devin — Settings → MCP Marketplace → Add custom server; paste the URL and the Authorization header above.

The tools

ToolWhat it does
search(query, k, classification?) Semantic search over your index. Returns hits with title, summary, sender, date and a Gmail deep link. Optional filter by classification (receipt, contract, …).
get_item(item_id) One indexed message in full: derived text content, summary, and the extracted entities (vendor, amounts, dates, order ids).
deep_link(item_id) A credentials-free Gmail URL that opens the original message.
ask(question, k) A natural-language answer grounded in your mail, with [n] citations and the source items.
index_message(source, sender, text, timestamp, …) Push one message from any source you script yourself into your own index — encrypted, indexed and board-mirrored like email. Writes only to the calling token's account. See bring your own source.

Tokens & security

Endpoint

https://mcp.zipppo.com/mcp — streamable-HTTP MCP, stateless, TLS.

Questions? Email schwartzidavid@gmail.com.