Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions fern/tools/mcp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ First, you need to obtain an MCP server URL from your chosen provider:
3. Generate or copy your MCP server URL

<Note>
For Zapier MCP, visit https://actions.zapier.com/settings/mcp/ to generate your MCP server URL. This URL should be treated as a credential and kept secure.
For Zapier MCP, visit https://mcp.zapier.com/mcp/?client=vapi? to generate your MCP server URL. This URL should be treated as a credential and kept secure.
</Note>

### 2. Create and Configure MCP Tool
Expand Down Expand Up @@ -96,7 +96,7 @@ MCP requests from Vapi include identifying headers to help with context and debu
This tool uses the following configuration options:

**Required:**
- `server.url`: The URL of your MCP server (e.g., https://actions.zapier.com/mcp/actions/)
- `server.url`: The URL of your MCP server (e.g., https://mcp.zapier.com/api/mcp/s/********/mcp)

**Optional:**
- `server.headers`: Custom headers to include in requests to the MCP server
Expand Down Expand Up @@ -133,7 +133,7 @@ Here's how the MCP tool can be used in your assistant's configuration:
"name": "mcpTools"
},
"server": {
"url": "https://actions.zapier.com/mcp/actions/"
"url": "https://mcp.zapier.com/api/mcp/s/********/mcp"
}
}
]
Expand Down Expand Up @@ -163,7 +163,7 @@ If you need to use Server-Sent Events protocol instead:
"name": "mcpTools"
},
"server": {
"url": "https://actions.zapier.com/mcp/actions/",
"url": "https://mcp.zapier.com/api/mcp/s/********/mcp",
"headers": {
"Authorization": "Bearer your-token",
"X-Custom-Header": "your-value"
Expand Down Expand Up @@ -193,7 +193,7 @@ If you need to use Server-Sent Events protocol instead:

Zapier offers an MCP server that provides access to thousands of app integrations:

1. Go to https://actions.zapier.com/settings/mcp/
1. Go to https://mcp.zapier.com/mcp/?client=vapi?
2. Generate your MCP server URL
3. Add the URL to your MCP tool configuration
4. Your assistant will now have access to Zapier's extensive integration network
Expand Down
Loading