MCP Tool in a transient assistant
# support
a
I am setting up a transient assistant and want to add two MCP servers as tools. How can I do so? Tried this https://docs.vapi.ai/tools/mcp#example-usage but it is not working
v
You can try adding two MCP servers by including two separate MCP tool objects in your assistant's
tools
array, each with its own
serverUrl
. For example:
Copy code
json
"tools": [
  {
    "type": "mcp",
    "name": "mcpTools1",
    "server": { "url": "https://actions.zapier.com/mcp/actions/" }
  },
  {
    "type": "mcp",
    "name": "mcpTools2",
    "server": { "url": "https://mcp.composio.dev/mcp/" }
  }
]
If this does not work, the documentation does not confirm official support for multiple MCP tools, so you may need to contact Vapi support for further assistance. Source: - [Vapi MCP Tool Documentation](https://docs.vapi.ai/tools/mcp)
a
Hey! To help track down this issue, could you share: - The call ID - When exactly this happened (the timestamp) - What response you expected to get - What response you actually got instead This would really help us figure out what went wrong!