@abhaybabbar/retellai-mcp-server 1.0.1 → 1.0.4-beta.0

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 CHANGED
@@ -11,7 +11,54 @@ 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
- ## Setup
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
+
38
+ ### Troubleshooting: "No tools available"
39
+
40
+ If Claude Desktop shows the server but no tools, upgrade to the latest package version:
41
+
42
+ ```bash
43
+ npx -y @abhaybabbar/retellai-mcp-server@latest
44
+ ```
45
+
46
+ This issue is typically caused by dependency/version mismatch in older installs.
47
+
48
+ ## Example use cases:
49
+
50
+ 1. List all the numbers I have in retellai
51
+ 2. List all the agents I have
52
+ 3. Tell me more about pizza delivery agent
53
+ 4. Creating agent and calling example:
54
+ 1. Create an agent that calls my local pizza shop, make sure to keep the conversation short and to the point.
55
+ 2. Order a margeritta pizza
56
+ 3. Payment will be done by cash on delivery
57
+ 4. Send it to <address>
58
+ 5. The agent should pretend to be me. My name is <your_name>
59
+ 6. Make an outbound call to my local pizza shop at <phone_number>, using the usa number
60
+
61
+ ## Repo Setup
15
62
 
16
63
  1. Install dependencies:
17
64
 
package/build/index.js CHANGED
@@ -14,7 +14,6 @@ function createMcpServer() {
14
14
  const mcpServer = new McpServer({
15
15
  name: "Retell MCP",
16
16
  version: "0.1.0",
17
- capabilities: [],
18
17
  });
19
18
  registerAllTools(mcpServer, retellClient);
20
19
  return mcpServer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abhaybabbar/retellai-mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.4-beta.0",
4
4
  "type": "module",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -14,14 +14,17 @@
14
14
  "license": "ISC",
15
15
  "description": "RetellAi MCP Server",
16
16
  "dependencies": {
17
- "@modelcontextprotocol/sdk": "^1.11.0",
17
+ "@modelcontextprotocol/sdk": "^1.29.0",
18
18
  "dotenv": "^16.5.0",
19
- "retell-sdk": "^4.28.0"
19
+ "retell-sdk": "^4.28.0",
20
+ "zod": "3.25.76"
20
21
  },
21
22
  "bin": {
22
23
  "@abhaybabbar/retellai-mcp-server": "build/index.js"
23
24
  },
24
- "devDependencies": {},
25
+ "devDependencies": {
26
+ "typescript": "^5.9.3"
27
+ },
25
28
  "repository": {
26
29
  "type": "git",
27
30
  "url": "git+https://github.com/abhaybabbar/retellai-mcp-server.git"
package/src/index.ts CHANGED
@@ -19,7 +19,6 @@ function createMcpServer() {
19
19
  const mcpServer = new McpServer({
20
20
  name: "Retell MCP",
21
21
  version: "0.1.0",
22
- capabilities: [],
23
22
  });
24
23
 
25
24
  registerAllTools(mcpServer, retellClient);