- Home
- MCP servers
- Rime
Rime
- javascript
28
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"matthewdailey-rime-mcp": {
"command": "npx",
"args": [
"rime-mcp"
],
"env": {
"RIME_VOICE": "cove",
"RIME_API_KEY": "YOUR_API_KEY",
"RIME_GUIDANCE": "<guide how the agent speaks>",
"RIME_WHEN_TO_SPEAK": "<tell the agent when to speak>",
"RIME_WHO_TO_ADDRESS": "<your name>"
}
}
}
}You can harness text-to-speech capabilities through a dedicated MCP server that uses the Rime API to generate audio and play it through your system’s speakers. This server exposes a speak tool you call to convert text into speech, making it easy to add voice feedback to your workflows, assistants, or automation.
How to use
Use the speak tool from your MCP client to convert text to speech and play it through your system audio. By configuring the tool’s prompts, you control when the agent speaks, which voice to use, and how the agent should address you. Typical usage patterns include: providing a concise spoken summary after code or data changes, announcing the start and end of long-running tasks, or delivering feedback in natural language. Adjust the guidance and voice settings to fit your context so the spoken responses feel natural and helpful.
How to install
Prerequisites: you need Node.js 16.x or higher and a working audio output device. On macOS, audio playback uses afplay automatically.
# Step 1: Install dependencies
npm install
# Step 2: Build the server
npm run build
# Step 3: Run in development mode with hot reload
npm run dev
Installing via Smithery
You can install the Rime MCP server automatically using Smithery with this command.
npx -y @smithery/cli install @MatthewDailey/rime-mcp --client claude
Available tools
speak
Converts provided text into spoken audio and plays it through the system audio using the Rime API