Voice-first planning β notes, tasks, events and AI reports. 21 tools. iOS + Apple Watch.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Connect your TellDone voice notes, tasks, events, and reports to Claude (Desktop, claude.ai, and Code), Cursor, Windsurf, Codex, and any MCP-compatible client β with one-click OAuth (browser sign-in, no token to copy) or a bearer token.
TellDone is a voice-first planning app. Dictate your thoughts, and AI automatically creates structured notes, tasks, events, and daily productivity reports.
Voice recording is available on iOS and Apple Watch. Android coming soon. You can also send text through MCP using process_note for the same AI analysis pipeline.
Use promo code
MCPBETA26after signup to get free MCP access (read & write for 30 days, then read-only for a year).
Connect in one of two ways: one-click OAuth (recommended β browser sign-in, nothing to copy) or a bearer token (works with every MCP client).
Add TellDone as a connector, sign in to your account in the browser, and approve. Access tokens are short-lived, scope-limited, and revocable any time in Settings β there's nothing to copy or store.
Claude Desktop & claude.ai β in Settings, open Connectors, choose Add custom connector, and paste:
Click Connect, sign in to TellDone, and approve the access. No manual app registration β TellDone supports Client ID Metadata Documents, so Claude registers itself automatically.
Claude Code
Then run /mcp and choose telldone β Authenticate to open the TellDone consent page in your browser β sign in and approve once. (CLI v2.1.186+: claude mcp login telldone does the same from the shell.)
Any MCP client that supports OAuth 2.1 discovery (RFC 9728 + RFC 8414) connects the same way.
First get a token: sign up at app.telldone.app, open Settings β AI Agents (MCP), and click Enable. Then add the server with your token:
Claude Code
Cursor .cursor/mcp.json
Windsurf .codeium/windsurf/mcp_config.json
Codex codex.json
OpenClaw
Settings > MCP Servers > Add > Name: TellDone, URL: https://api.telldone.app/mcp/user/mcp, Auth: Bearer YOUR_TOKEN
Ask your AI tool things like:
Every tool returns JSON. The MCP wire response wraps payloads in result.content[0].text as a JSON-encoded string β parse it with json.loads() (or equivalent) to get the actual data.
All datetimes, dates, and UUIDs in the decoded JSON are STRINGS, not native language types. Do not call .toordinal(), .weekday(), or any datetime method directly on them β you will get TypeError: 'str' has no attribute 'toordinal'. Parse them first.
| Field shape | Wire format | Example | Parse with |
|---|---|---|---|
| UUID | string (lowercase hex with dashes) | "b3f3c8a0-9a4d-4e12-9f4a-1a1b2c3d4e5f" | use as-is |
| Datetime (timestamp) | ISO 8601 string with timezone offset | "2026-04-18T11:30:00+00:00" | datetime.fromisoformat(s) in Python; new Date(s) in JS |
| Date (calendar day, no time) | YYYY-MM-DD string | "2026-04-18" | date.fromisoformat(s) in Python |
| Boolean | true / false | true | native |
| Integer | JSON number | 42 | native |
| Nullable field | JSON null | null | None / null |
| Field | Wire format |
|---|---|
tags (on notes/tasks/events) | array of strings, OR null if never set, OR [] if cleared |
reminder_minutes (events, writable field) | array of ints on input/output |
attendees (events, writable field) | array of strings (names/emails) |
metadata (notes) | JSON object or null |
tasks / events arrays inside get_note / get_notes_full | always present, possibly empty [] |
priority β "low", "medium", "high", or nullnote.type β "task", "idea", "info", "status", "meeting", "event", "reflection"note.status β "active", "archived" (deleted records are excluded from every read tool)task.status β "todo", "done" (query param status="all" means "all not-deleted")event.status β "confirmed", "tentative", "cancelled"report.type β "daily", "weekly", "monthly", "yearly"source (tasks), completed_by (tasks) β free-form strings: "mcp", "app", "sync", "audio", "todoist", "notion", etc.| Tool | Returned fields (all at top level of each array item unless noted) |
|---|---|
get_profile | id UUID, email str, display_name str|null, locale str, transcription_locale str|null, timezone str (IANA), subscription str, mcp_mode str, created_at ISO 8601 datetime str, stats {notes:int, tasks:int, events:int} |
get_notes | id UUID, title str, summary str|null, type enum, tags str[]|null, priority enum|null, status enum, recorded_at ISO 8601 datetime str|null, created_at ISO 8601 datetime str |
get_note | note fields (id, title, summary, transcript str|null, type, tags, priority, status, metadata obj|null, created_at) + tasks[] + events[] arrays with subset fields |
get_notes_full | array of notes with tasks[] and events[] embedded (same subset as get_note, minus metadata) |
get_tasks | id UUID, title str, description str|null, status enum, priority enum|null, tags str[]|null, deadline YYYY-MM-DD str|null, reminder_at ISO 8601 datetime str|null, completed_at ISO 8601 datetime str|null, completed_by str|null, source str|null, created_at ISO 8601 datetime str |
get_events | id UUID, title str, description str|null, status enum, start_at ISO 8601 datetime str (non-null), end_at ISO 8601 datetime str (non-null), location str|null, is_all_day bool|null, tags str[]|null, created_at ISO 8601 datetime str. Note: attendees, reminder_minutes, recurrence_rule are writable via create_event/update_event but are NOT returned by get_events. |
get_reports | id UUID, type enum, period_start YYYY-MM-DD str, period_end YYYY-MM-DD str, content_md str|null, created_at ISO 8601 datetime str |
get_tags | tag str, usage_count int, is_pinned bool, is_manual bool |
search | {notes: [...], tasks: [...], events: [...]} β each item is {id UUID, type "note"/"task"/"event", title str, detail str|null, created_at ISO 8601 datetime str}. All three arrays always present, possibly empty. |
| Write tools | minimal: {id UUID, title str, status enum} (plus type on notes). Do not expect full records β call the matching get_* tool if you need more fields. |
| Delete tools | {id UUID, deleted: true} |
process_note | {audio_id UUID, status "processing", mode "audio+stt"/"text-only", message str} β async; final result arrives via WebSocket note_ready or a later get_notes call. |
| Any tool on error | {error: "message"} β always null-check for the error key before treating the response as a record. |
note_id, task_id, event_id, parent_*_id β UUID stringsdate_from, date_to, deadline β YYYY-MM-DD strings (empty string means "no filter")start_at, end_at, reminder_at β ISO 8601 datetime strings, e.g. "2026-04-15T09:00:00Z" or "2026-04-15T09:00:00+00:00"tags β comma-separated string on input (e.g. "work,urgent"); stored/returned as string[]reminder_minutes, attendees β comma-separated strings on input; stored/returned as arraysis_all_day β boolean on create_event; string "true"/"false" on update_eventrecurrence_rule β RRULE string, e.g. "FREQ=WEEKLY;BYDAY=MO,WE,FR"No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/telldone)<a href="https://allmcps.com/mcp/telldone"><img src="https://allmcps.com/api/badge/telldone?style=directory" alt="Telldone on AllMCPs" /></a>