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

# Overview

> Rime's hosted MCP server — connect AI assistants to the voice catalog, linguistics tools, speech synthesis, and integration scaffolding.

Rime hosts a first-party [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server at **[mcp.rime.ai](https://mcp.rime.ai)**. Connect it to Claude, OpenAI Codex, your IDE, or any MCP-compatible client to browse the voice catalog, check pronunciation coverage, preview text normalization, generate speech samples, and scaffold voice-agent integration code — all from a conversation.

## Server URL

```
https://mcp.rime.ai
```

The server speaks stateless Streamable HTTP. Both the root URL and `https://mcp.rime.ai/mcp` serve the MCP endpoint — use whichever your client expects. See [Connecting](/mcp-reference/connect) for client-by-client setup.

## Tools

<CardGroup cols={2}>
  <Card title="list_voices" icon="list" href="/mcp-reference/list-voices">
    List the voice catalog, filterable by model and language. No API key.
  </Card>

  <Card title="get_voice_details" icon="circle-info" href="/mcp-reference/get-voice-details">
    Voice metadata: gender, age, accent, country, and the `lang` value for synthesis. No API key.
  </Card>

  <Card title="check_dictionary" icon="spell-check" href="/mcp-reference/check-dictionary">
    Find words not in Rime's pronunciation dictionary.
  </Card>

  <Card title="normalize_text" icon="text" href="/mcp-reference/normalize-text">
    Preview exactly what the TTS model will speak.
  </Card>

  <Card title="synthesize_speech" icon="waveform" href="/mcp-reference/synthesize-speech">
    Generate an MP3 sample with an inline audio player.
  </Card>

  <Card title="generate_integration" icon="code" href="/mcp-reference/generate-integration">
    Emit ready-to-run Pipecat or LiveKit code. No API key.
  </Card>
</CardGroup>

## Learn more

<CardGroup cols={2}>
  <Card title="Connecting" icon="plug" href="/mcp-reference/connect">
    Set up Claude Code, Claude.ai, OpenAI Codex, and other MCP clients
  </Card>

  <Card title="Authentication" icon="key" href="/mcp-reference/authentication">
    Per-request API keys, accepted headers, and which tools work without one
  </Card>

  <Card title="Playing audio" icon="volume-high" href="/mcp-reference/audio">
    How synthesized samples reach your speakers in UI and terminal hosts
  </Card>

  <Card title="Starter prompts" icon="wand-magic-sparkles" href="/mcp-reference/prompts">
    Optional shortcuts surfaced by clients that support MCP prompts
  </Card>
</CardGroup>

<Note>The MCP server is built for exploration and prototyping — it generates complete audio samples rather than streaming. For production voice agents, use the [streaming APIs](/docs/streaming) directly, or ask [`generate_integration`](/mcp-reference/generate-integration) for working [Pipecat](/docs/pipecat) or [LiveKit](/docs/livekit) starter code.</Note>
