loading…
Search for a command to run...
loading…
Email read tracking via Gmail. Send tracked emails, check if they were opened with open count, device, and timing.
Email read tracking via Gmail. Send tracked emails, check if they were opened with open count, device, and timing.
Open-source CLI and MCP server for email read tracking via Gmail. Know when your emails are opened — from the terminal.
Works with the DoubleTick backend. Tracks from the CLI show up alongside tracks from the Chrome extension.
npm install -g doubletick-cli
# 1. Log in with your Gmail account (one-time)
doubletick login
# 2. Send a tracked email
doubletick send --to [email protected] --subject "Q1 Planning" --body "Hi Jane, here are the numbers..."
# 3. Check if they read it
doubletick status --last
doubletick loginAuthenticate with Gmail and DoubleTick. Opens your browser for Google sign-in. One-time setup — credentials are stored locally in ~/.doubletick/credentials.json.
doubletick logoutRemove stored credentials.
doubletick sendSend a tracked email. Injects a read-tracking pixel, sends via Gmail API, and registers the track.
# Send a tracked email (body is markdown by default)
doubletick send --to [email protected] --subject "Hi" --body "Hello **Jane**"
# HTML body instead of markdown
doubletick send --to [email protected] --subject "Hi" --body "<h1>Hello</h1>" --html
# Body from file
doubletick send --to [email protected] --subject "Hi" --body-file ./email.md
# With CC/BCC
doubletick send --to [email protected] --cc "[email protected]" --subject "Hi" --body "Hello"
doubletick statusCheck if a tracked email has been opened.
# Most recent tracked email
doubletick status --last
# Find by recipient
doubletick status --to [email protected]
# By tracking ID
doubletick status abc-123
doubletick dashboardList all your tracked emails with open rates and stats.
doubletick dashboard
doubletick dashboard --limit 50
DoubleTick works as an MCP server so AI agents (Claude Code, Claude Desktop, etc.) can send and track emails natively.
Add to your Claude configuration:
{
"mcpServers": {
"doubletick": {
"command": "npx",
"args": ["-y", "doubletick-cli"]
}
}
}
You must run doubletick login first — the MCP server uses the same stored credentials.
| Tool | Description |
|---|---|
send_tracked_email |
Send an email with read tracking |
check_tracking_status |
Check if a tracked email has been opened |
list_tracked_emails |
List recent tracked emails with stats |
doubletick statusThe entire DoubleTick backend (pixel serving, open logging, deduplication, device detection) works unchanged. The CLI is just a new way to inject the pixel — replacing the Chrome extension's role for terminal/agent workflows.
doubletick CLI / MCP server
├── Gmail API → send emails
└── DoubleTick API → register tracks, check status
├── GET /img?t=<id> → tracking pixel
├── POST /track → register tracked email
├── GET /status?id= → check opens
└── GET /dashboard → list tracked emails
MIT
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"cseguinlz-doubletick-cli": {
"command": "npx",
"args": []
}
}
}