---
title: "Speak AI Docs"
description: "API reference, MCP tools, SDK guides, and changelog for Speak AI, written for humans and agents."
---

> Documentation Index
> Fetch the complete documentation index at: https://docs.speakai.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Speak AI Docs

# Speak AI Docs

Everything you need to build on Speak AI lives here: the MCP server and its
tool reference, the REST API, the Node SDK, help articles, and the product
changelog, under one root with one search index.

This page mirrors the homepage. It is the Markdown twin an agent reads, so it
carries the same facts in a flatter shape.

## Which surface are you building against?

Speak AI is one system of record for voice, video, and text data, and you reach
it through four surfaces.

- **[MCP server](/mcp)** connects Claude, ChatGPT, Cursor, VS Code, and other
  Model Context Protocol clients to a Speak AI workspace. It runs at
  `https://api.speakai.co/v1/mcp` and exposes 113 tools covering media,
  transcripts, AI insights, folders, recorders, automations, and exports.

```bash
  claude mcp add speakai --transport http --url https://api.speakai.co/v1/mcp
```

- **[API reference](/api)** documents 75 REST endpoints across 13 resources at
  the base URL `https://api.speakai.co/v1`. Exchange your API key for an access
  token, then send that token on every call.

```bash
  curl -X POST 'https://api.speakai.co/v1/auth/accessToken' \
-H 'x-speakai-key: sk_test_speak_0000000000000000' \
-H 'Content-Type: application/json' \
-d '{}'
```

- **[Node SDK](/api/node-sdk)** covers `@speakai/mcp-server`, the package that runs the
  MCP server and doubles as a Node library. Install it to register Speak AI's
  tools, resources, and prompts on your own MCP server. It needs Node 22 or
  newer.

```bash
  npm install @speakai/mcp-server
```

- **[Changelog](/changelog)** records every feature, fix, and improvement Speak
  AI has shipped, grouped by year, with an RSS feed at `/changelog/rss.xml` and
  a JSON feed at `/changelog/feed.json`.

```bash
  curl https://docs.speakai.co/changelog/feed.json
```

## What else is in these docs?

Three more sections cover what the reference pages do not.

- **[Help](/help)** answers product questions about recorders, folders,
  uploads, and workspace settings.
- **[Tool reference](/mcp/tools)** documents every MCP tool, resource, and
  prompt, grouped by the area it works on.

## How do agents read these docs?

Agents get the same content as browsers, in a cleaner format. Fetch
[llms.txt](https://docs.speakai.co/llms.txt) for the index of every page, or
[llms-full.txt](https://docs.speakai.co/llms-full.txt) for the whole corpus in
one document, then append `index.md` to any page path to read that page as
clean Markdown with its frontmatter intact.

A prompt worth pasting into any AI tool:

```text
I'm working with Speak AI. Read https://docs.speakai.co/llms.txt for the
documentation index, and connect the MCP server at
https://api.speakai.co/v1/mcp for live workspace access.
```

Source: https://docs.speakai.co/index.mdx
