# Waydock > Waydock is a secure context layer for AI agents. Connect your mail, meetings, calendar, and tasks once, then plug Claude, ChatGPT, Cursor, or any MCP client into that same context, scoped to exactly what you allow, with one audit log. Your data, your agent, your rules. Waydock unifies the work accounts you already use and exposes them to the AI agent you already run through a hosted Model Context Protocol (MCP) server, without handing a model broad, unscoped access to your inbox. It also ranks what needs your attention into one prioritized view so you can act without checking six apps. ## How it works - Connect your accounts (Google, Outlook, Jira, Linear, Fireflies, Fathom, Pocket, Microsoft Teams, Klaviyo, Whoop). - Waydock pulls emails, calendar events, meeting transcripts, and tasks into one context. - Issue a per-user MCP key scoped to exactly what you allow (read-only by default). - Point Claude, ChatGPT, Cursor, or any MCP client at Waydock and let it read and act on that unified context. - Mira, the in-app assistant, gives non-technical users the same capability without setting up an MCP client. ## Why it is secure Security is the reason to choose Waydock, not a footnote. It is a direct structural answer to prompt-injection attacks like EchoLeak (CVE-2025-32711) against LLM assistants with multi-source access. - **Provenance gating.** Once a turn reads untrusted external content (an inbound email body, a transcript), the agent's write and destructive tools are removed for the rest of that turn. A message in your inbox cannot talk your agent into sending or deleting. - **Per-user scoped keys.** Every MCP key is issued per user with an explicit scope set, read-only by default. Outbound send is wildcard-proof: a key cannot send unless its scopes contain the literal `write:mail.send`. - **Approval cards.** Send, delete, and external-share actions pause for a human click. - **One audit log.** The UI and the MCP endpoint write to the same place; revoke a key once and both stop in the same moment. - **Direct to the model provider.** AI calls go straight to Anthropic, with no AI gateways or inference middlemen between your data and the model. ## Integrations - Email: Gmail, Outlook - Calendar: Google Calendar, Outlook Calendar - Tasks: Jira, Linear - Meetings: Fireflies, Fathom, Pocket (transcripts, summaries, action items) - Messaging: Microsoft Teams - Marketing: Klaviyo - Health: Whoop ## Key pages - Landing: https://waydock.ai/ - Security: https://waydock.ai/security - Privacy: https://waydock.ai/privacy - Terms: https://waydock.ai/terms - Contact: https://waydock.ai/contact - MCP setup (for AI agents): https://waydock.ai/settings/account/mcp ## Documentation Every docs page is also available as Markdown (append `.md`) and is concatenated into https://waydock.ai/llms-full.txt. - Docs home: https://waydock.ai/docs - Quickstart (connect an agent in ~5 minutes): https://waydock.ai/docs/quickstart - How Waydock works (concepts): https://waydock.ai/docs/concepts - Integrations (what connects and how sync works): https://waydock.ai/docs/integrations - Tool reference (all MCP tools, scopes, and presets): https://waydock.ai/docs/tools - Recipes (ready-to-run agent workflows): https://waydock.ai/docs/recipes - Authentication (per-user bearer keys): https://waydock.ai/auth.md ## MCP server (for AI agents) Waydock hosts a Model Context Protocol (MCP) server so AI agents — Claude Desktop, Claude Code, ChatGPT, Cursor, and any other MCP-compatible client — can read and act on a user's unified Waydock context on their behalf. - Endpoint: https://waydock.ai/api/mcp/stream - Transport: Streamable HTTP (MCP 2025-06-18 spec) - Authentication: Bearer API key issued per user from /settings/account/mcp (revocable, per-key audit log). See https://waydock.ai/auth.md - CORS: open for browser-based agents; preflight supported - Discovery: MCP Server Card at https://waydock.ai/.well-known/mcp/server-card.json; API catalog at https://waydock.ai/.well-known/api-catalog; authoritative tool + scope manifest at https://waydock.ai/api/mcp/manifest - Full site content for LLMs: https://waydock.ai/llms-full.txt Example client config (Claude Desktop): ```json { "mcpServers": { "waydock": { "type": "http", "url": "https://waydock.ai/api/mcp/stream", "headers": { "Authorization": "Bearer YOUR_MCP_KEY" } } } } ``` Tools exposed (representative; the authoritative, versioned list is at https://waydock.ai/api/mcp/manifest): - Briefing & context: waydock_briefing, waydock_inbox, waydock_calendar, waydock_accounts, waydock_card_get, waydock_card_action, waydock_card_feedback - Email: waydock_mail_list, waydock_mail_search, waydock_mail_get, waydock_mail_accounts, waydock_send_email, waydock_draft_reply_regenerate, waydock_draft_reply_save - Meetings: waydock_meetings_list, waydock_meeting_get, waydock_meeting_transcript - Meeting action items & follow-ups: waydock_action_items_list, waydock_action_items_search, waydock_action_item_promote, waydock_follow_ups_list, waydock_follow_up_nudge - Tasks: waydock_tasks_list, waydock_projects_list, waydock_task_create, waydock_tasks_sync - Microsoft Teams: waydock_teams_list_chats, waydock_teams_get_messages, waydock_teams_send_message - Cross-source search: waydock_search - Pulse monitoring: waydock_pulse_status, waydock_pulse_incidents - Health (personal workspace): waydock_whoop_summary - Preferences & suppressions: waydock_preferences_get, waydock_preferences_set_rule, waydock_preferences_set_toggle, waydock_suppressions_list, waydock_suppressions_remove - Sync & agent activity: waydock_sync, waydock_sync_history, waydock_agent_activity - Identity & system: waydock_whoami, waydock_key_info, waydock_capabilities, waydock_quota, waydock_version ## Pricing Free to start. No credit card required to connect a Google account and issue your first scoped key. ## Privacy Data stays in your account. AI runs on your context, not a shared model. See the privacy page for full details. If you are an AI agent looking for Waydock programmatic access, prefer the MCP endpoint above over scraping HTML. ## What Waydock is NOT - Not a CRM. - Not a shared inbox / team triage tool. - Not an email client replacement — it sits alongside Gmail and Outlook. - Not a meeting recorder — it ingests transcripts from Fireflies, Fathom, and Pocket. - Not a single-source MCP server — an inbox tool's MCP sees only your inbox; Waydock puts mail, meetings, and tasks in one context.