@abhaybabbar/retellai-mcp-server 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,30 @@ The RetellAI MCP server provides tools for:
|
|
|
11
11
|
- **Phone Number Management**: Provision and configure phone numbers
|
|
12
12
|
- **Voice Management**: Access and use different voice options
|
|
13
13
|
|
|
14
|
+
## Claude Desktop Setup
|
|
15
|
+
|
|
16
|
+
1. Open `Claude Desktop` and press `CMD + ,` to go to `Settings`.
|
|
17
|
+
2. Click on the `Developer` tab.
|
|
18
|
+
3. Click on the `Edit Config` button.
|
|
19
|
+
4. This will open the `claude_desktop_config.json` file in your file explorer.
|
|
20
|
+
5. Get your Retell API key from the Retell dashboard (<https://dashboard.retellai.com/apiKey>).
|
|
21
|
+
6. Add the following to your `claude_desktop_config.json` file. See [here](https://modelcontextprotocol.io/quickstart/user) for more details.
|
|
22
|
+
7. Restart the Claude Desktop after editing the config file.
|
|
23
|
+
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"mcpServers": {
|
|
27
|
+
"retellai-mcp-server": {
|
|
28
|
+
"command": "npx",
|
|
29
|
+
"args": ["-y", "@abhaybabbar/retellai-mcp-server"],
|
|
30
|
+
"env": {
|
|
31
|
+
"RETELL_API_KEY": "<your_retellai_token>"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
```
|
|
37
|
+
|
|
14
38
|
## Setup
|
|
15
39
|
|
|
16
40
|
1. Install dependencies:
|