# Dovetail — how to use (mcp.ai)

Connect your Dovetail account and use 51 tools for analytics straight from your AI agent. Connect with your own API key. Dovetail is an Australian software company that provides tools for transcription analysis, coding interpretation of interviews, survey responses, and feedback, enabling users to create summarized insights from their research analysis.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_dovetail?ms=1787293500000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `dovetail_create_channel`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/dovetail`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/dovetail/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/dovetail/create/channel` — Creates a new channel in Dovetail to organize and collect feedback data. Channels are containers for specific types of customer feedback such as app reviews, NPS responses, churn reasons, product revi
  - body: { title: string, contentType: string, projectCategoryId?: string }
- `POST https://api.mcp.ai/api/dovetail/create/contact` — Tool to create a new contact in Dovetail. Use when you need to register a contact before logging interactions.
  - body: { name: string, email: string }
- `POST https://api.mcp.ai/api/dovetail/create/data` — Tool to create a data item in a Dovetail project with text content, title, and/or structured fields. Use when you need to capture and store research data, interview notes, or other content in a projec
  - body: { title?: string, fields?: object[], content?: string, project_id: string }
- `POST https://api.mcp.ai/api/dovetail/create/data/point` — Tool to create a data point within a channel. Use after capturing new content to record and classify it in Dovetail.
  - body: { text: string, metadata?: object, timestamp: string, channel_id: string, source_url?: string, source_title?: string }
- `POST https://api.mcp.ai/api/dovetail/create/doc` — Tool to create a doc in a Dovetail project with text content, title and/or custom fields. Use when you need to document research findings, store notes, or create structured content within a project. T
  - body: { title?: string, fields?: object[], content?: string, project_id: string }
- `POST https://api.mcp.ai/api/dovetail/create/insight` — Creates a new insight in Dovetail to store synthesized research findings, observations, or conclusions. Use this tool when you need to document and save key findings from user research, interviews, or
  - body: { body: string, title: string, project_id?: string }
- `POST https://api.mcp.ai/api/dovetail/create/note` — Tool to create a note in a Dovetail project with text content, title and/or custom fields. Use when you need to document research notes, store interview findings, or create structured content within a
  - body: { title?: string, fields?: object[], content?: string, project_id: string }
- `POST https://api.mcp.ai/api/dovetail/create/project` — Tool to create a new project in your Dovetail workspace. Use when you need to create a project to organize research data.
  - body: { title?: string }
- `POST https://api.mcp.ai/api/dovetail/create/topic` — Tool to create a new topic in a Dovetail channel. Requires channel_id, title, and description. Use to organize feedback within channels by creating themed discussion topics.
  - body: { title: string, channel_id: string, description: string }
- `POST https://api.mcp.ai/api/dovetail/delete/channel` — Tool to delete an existing channel. Use when you need to remove a channel and move it to the project's trash (restorable for 30 days). Confirm the channel ID before calling.
  - body: { channel_id: string }
- `POST https://api.mcp.ai/api/dovetail/delete/data` — Tool to delete an existing data item. Use when you have confirmed the data ID and want to move it to trash (restorable for 30 days). Example: "Delete data with ID 1tFfvvAmYPCLUqb9zO8dgN."
  - body: { data_id: string }
- `POST https://api.mcp.ai/api/dovetail/delete/doc` — Tool to delete an existing doc. Use when you need to remove a doc and move it to the project's trash (restorable for 30 days).
  - body: { doc_id: string }
- `POST https://api.mcp.ai/api/dovetail/delete/insight` — Tool to delete an existing insight. Use when you have confirmed the insight ID and want to move it to trash (restorable for 30 days).
  - body: { insight_id: string }
- `POST https://api.mcp.ai/api/dovetail/delete/note` — Tool to delete an existing note. Use when you have confirmed the note ID and want to move it to trash (restorable for 30 days).
  - body: { note_id: string }
- `POST https://api.mcp.ai/api/dovetail/delete/topic` — Tool to delete an existing topic. Use when you have confirmed the topic ID and want to move it to trash (restorable for 30 days). Example: "Delete topic with ID 123e4567-e89b-12d3-a456-426614174000."
  - body: { topic_id: string }
- `POST https://api.mcp.ai/api/dovetail/export/data` — Tool to export data in HTML or Markdown format. Use when you need to retrieve a formatted version of data items from Dovetail.
  - body: { type: string, data_id: string }
- `POST https://api.mcp.ai/api/dovetail/export/doc` — Tool to export a doc in HTML or Markdown format. Use when you need to retrieve the full content of a doc from Dovetail in a specific format.
  - body: { type: string, doc_id: string }
- `POST https://api.mcp.ai/api/dovetail/export/insight` — Tool to export an insight in HTML or Markdown format. Use when you need to retrieve the full content of an insight for documentation, reporting, or sharing purposes. The exported content includes the 
  - body: { type: string, insight_id: string }
- `POST https://api.mcp.ai/api/dovetail/export/note` — Tool to export a note from Dovetail in HTML or Markdown format. Use when you need to retrieve the full content of a note in a specific export format.
  - body: { type: string, note_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/contact` — Tool to retrieve details of a specific contact. Use when you have confirmed the contact ID and need full contact metadata from Dovetail.
  - body: { contact_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/data` — Tool to retrieve details of a specific data item by ID. Use when you have confirmed the data ID and need full metadata including custom fields, files, and project information from Dovetail.
  - body: { data_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/doc` — Tool to retrieve details of a specific doc by ID. Use when you have confirmed the doc ID and need full doc metadata from Dovetail.
  - body: { doc_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/file` — Tool to retrieve details of a specific file by its ID. Use when you need file metadata, download URL, or processing status from Dovetail.
  - body: { file_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/folder` — Tool to retrieve details of a specific folder. Use when you have confirmed the folder ID and need full folder metadata from Dovetail.
  - body: { folder_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/insight` — Tool to retrieve details of a specific insight by ID. Use when you need full insight metadata from Dovetail.
  - body: { insight_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/note` — Tool to retrieve details of a specific note. Use when you have confirmed the note ID and need full note metadata from Dovetail.
  - body: { note_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/project` — Tool to retrieve details of a specific project. Use when you have confirmed the project ID and need full project metadata from Dovetail.
  - body: { project_id: string }
- `POST https://api.mcp.ai/api/dovetail/get/token/info` — Retrieves information about the current API token, including its unique identifier and the associated workspace subdomain. Use this to verify which workspace the token belongs to.
- `POST https://api.mcp.ai/api/dovetail/import/data/file` — Tool to import a public URL of a file as new data in Dovetail. Use when you need to add external files to a project.
  - body: { url: string, title: string, fields?: object[], author_id?: string, mime_type?: string, created_at?: string, project_id: string }
- `POST https://api.mcp.ai/api/dovetail/import/doc/file` — Tool to import a public file URL as a new doc in Dovetail. Use when you need to create a doc from an external file source. The file must be publicly accessible at the provided URL.
  - body: { url: string, title: string, fields?: object[], mime_type?: string, project_id?: string }
- `POST https://api.mcp.ai/api/dovetail/import/insight/file` — Tool to import a file from a public URL as a new insight in Dovetail. Use when you need to create an insight from an external file source such as PDFs, images, or documents. The file must be publicly 
  - body: { url: string, title: string, fields?: object[], mime_type?: string, project_id?: string }
- `POST https://api.mcp.ai/api/dovetail/import/note/file` — Tool to import a file from a public URL as a new note in Dovetail. Use when you need to create a note by importing content from an accessible file URL (PDF, video, audio, etc.).
  - body: { url: string, title: string, fields?: object[], mime_type?: string, project_id: string }
- `POST https://api.mcp.ai/api/dovetail/list/contacts` — Retrieves a paginated list of contacts from a Dovetail workspace. Returns contact IDs, names, creation timestamps, and custom fields. Use cursor-based pagination (limit + start_cursor) to navigate lar
  - body: { limit?: integer, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/data` — Tool to list data items in Dovetail. Use when you need to retrieve, filter, sort, or paginate through your workspace data. Supports filtering by created_at (date range), project_id, and title. Results
  - body: { sort?: string, filter?: object, page_limit?: integer, page_start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/docs` — Tool to list docs in a Dovetail workspace with optional filtering, sorting, and pagination. Use when you need to retrieve docs, optionally filtered by project, title, content, or creation date.
  - body: { sort?: string, limit?: integer, title?: string, content?: string, created_at?: string, project_id?: string, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/folders` — Tool to get a list of folders associated with a workspace. Use when you need to retrieve folder hierarchy, search for folders by title, or navigate the folder structure with pagination support.
  - body: { sort?: string, limit?: integer, start_cursor?: string, filter_title_contains?: string, filter_title_equal_to?: string, filter_parent_folder_id?: string }
- `POST https://api.mcp.ai/api/dovetail/list/highlights` — List highlights from your Dovetail workspace with optional filtering and pagination. Use this action to retrieve highlights that have been created across your notes and projects. Supports filtering by
  - body: { limit?: integer, note_id?: string, project_id?: string, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/insights` — Tool to get a list of insights associated with a workspace. Use when you need to retrieve insights with optional filtering by project, publication status, or title, and support for cursor-based pagina
  - body: { sort?: string, limit?: integer, start_cursor?: string, filter_published?: boolean, filter_project_id?: string }
- `POST https://api.mcp.ai/api/dovetail/list/notes` — List notes in Dovetail workspace with optional pagination and sorting. Use this tool to retrieve notes from your Dovetail workspace. Supports pagination for large result sets and sorting options. Retu
  - body: { sort?: string, limit?: integer, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/projects` — Tool to list all projects in Dovetail. Use after authenticating with a valid workspace token when you need to retrieve the full project list.
  - body: { limit?: integer, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/tags` — List all tags in the authenticated Dovetail workspace. Returns tag details including title, color, highlight count, and timestamps. Supports pagination for workspaces with many tags.
  - body: { page_limit?: integer, page_start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/user/docs` — Tool to get a list of docs associated with a user in Dovetail. Use when you need to retrieve documents for a specific user or the authenticated user (use 'me' as user_id).
  - body: { sort?: string, limit?: integer, user_id: string, start_cursor?: string }
- `POST https://api.mcp.ai/api/dovetail/list/user/insights` — List personal insights for a user in Dovetail. Returns a paginated list of insights including their IDs, titles, creation dates, and published status. Use DOVETAIL_GET_TOKEN_INFO to obtain a valid use
  - body: { user_id: string }
- `POST https://api.mcp.ai/api/dovetail/magic/search` — Tool to perform a magic search across workspace data. Use when you need to retrieve relevant highlights, notes, insights, channels, themes, or tags by query.
  - body: { page?: integer, limit?: integer, query: string, types?: string[] }
- `POST https://api.mcp.ai/api/dovetail/update/channel` — Tool to update an existing channel's title or context. Use after confirming the channel ID and fields to change.
  - body: { title?: string, context?: string, channel_id: string }
- `POST https://api.mcp.ai/api/dovetail/update/contact` — Tool to update an existing contact in Dovetail. Use when you need to modify a contact's name, email, or custom fields.
  - body: { name?: string, email?: string, fields?: object[], contact_id: string }
- `POST https://api.mcp.ai/api/dovetail/update/data` — Tool to update a data item in Dovetail. Use when you need to modify the title or fields of an existing data item.
  - body: { title?: string, fields?: object[], data_id: string }
- `POST https://api.mcp.ai/api/dovetail/update/doc` — Tool to update a doc in Dovetail. Use when you need to modify a doc's title or custom fields.
  - body: { title?: string, doc_id: string, fields?: object[] }
- `POST https://api.mcp.ai/api/dovetail/update/insight` — Updates an existing insight in Dovetail, allowing you to modify the title and custom fields. Use when you need to revise insight information, correct titles, or update custom field values.
  - body: { title?: string, fields?: object[], insight_id: string }
- `POST https://api.mcp.ai/api/dovetail/update/note` — Tool to update an existing note in Dovetail. Use when you need to modify a note's title, content, or custom fields. Example: "Update note 8IFq5LEC6hV1Vgsu0jPNJ with new title 'Q1 Review'".
  - body: { title?: string, fields?: object[], content?: string, note_id: string }
- `POST https://api.mcp.ai/api/dovetail/update/topic` — Tool to update an existing topic. Use after confirming the topic ID and fields to change. Example: "Update topic with id 123... to have title 'New'".
  - body: { title?: string, topic_id: string, description?: string }

## Example prompts
- "What can I do in Dovetail?"
- "Show me a summary of my Dovetail account"

## More
- Page: https://mcp.ai/dovetail
- Agent spec (llms.txt): https://mcp.ai/dovetail/llms.txt
- Postman collection: https://mcp.ai/dovetail/postman.json
