# LMNT — how to use (mcp.ai)

Connect your LMNT account and use 8 tools for artificial intelligence straight from your AI agent. Connect with your own API key. LMNT focuses on voice and audio manipulation, possibly leveraging AI to generate or transform sound for various creative and technical use cases.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_lmnt?ms=1787295960000`
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. `lmnt_create_voice`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/lmnt`
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/lmnt/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/lmnt/create/voice` — Creates a custom voice in LMNT by training on uploaded audio samples. The voice can then be used for text-to-speech synthesis. Returns the voice ID and metadata upon successful creation. The voice may
  - body: { name: string, type?: string, files: object, gender?: string, enhance?: boolean, description?: string }
- `POST https://api.mcp.ai/api/lmnt/delete/voice/info` — Deletes a voice from your LMNT account. This operation permanently removes the voice and cancels any pending operations on it. This action cannot be undone. Only voices owned by you (owner='me') can b
  - body: { id: string }
- `POST https://api.mcp.ai/api/lmnt/generate/speech/with/metadata` — Generates speech from text and returns JSON with base64-encoded audio and optional word-level timing metadata. Use when you need the synthesis seed or word timestamps for subtitle synchronization. For
  - body: { seed?: integer, text: string, debug?: boolean, model?: string, top_p?: number, voice: string, format?: string, language?: string, sample_rate?: integer, temperature?: number, return_durations?: boolean }
- `POST https://api.mcp.ai/api/lmnt/get/account` — Retrieves account information including subscription plan details and current usage statistics.
- `POST https://api.mcp.ai/api/lmnt/get/voice/info` — Gets metadata for a specific LMNT voice, including active status, supported languages, and plan availability. Useful for validating a voice ID before using it in synthesis requests.
  - body: { id: string }
- `POST https://api.mcp.ai/api/lmnt/get/voices/list` — Retrieves a list of available voices from LMNT. Returns both system-provided preset voices and any custom voices you have created. Use filters to narrow results by ownership (system vs custom) or star
  - body: { owner?: string, starred?: boolean }
- `POST https://api.mcp.ai/api/lmnt/synthesize/speech` — Synthesizes speech from text using LMNT's AI voices. Converts text (up to 5000 characters) into natural-sounding speech audio using a specified voice. Returns base64-encoded audio at `data.response_da
  - body: { seed?: integer, text: string, debug?: boolean, model?: string, top_p?: number, voice: string, format?: string, language?: string, sample_rate?: integer, temperature?: number }
- `POST https://api.mcp.ai/api/lmnt/update/voice` — Updates information about a specific voice in LMNT. You can update the name, description, gender, starred status, and unfreeze state of a voice. Note: Only user-owned voices (owner='me') can have thei
  - body: { id: string, name?: string, gender?: string, starred?: boolean, unfreeze?: boolean, description?: string }

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

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