v2
latestOpenAPI 3.0.02026-08-051996591.2 MBTool Servers
Update tool server
Updates the configuration of a tool server.
patch/v2/tool_servers/{tool_server_id}
Path parameters
tool_server_idstring required
Example:tsr_rag_search
The unique identifier of the tool server to update.
Headers
Request-Timeoutinteger
The platform makes a best effort to complete the request in the specified seconds, or it times out.
Request-Timeout-Millisinteger
The platform makes a best effort to complete the request in the specified milliseconds, or it times out.
Request body
Example request
{
"name": "RAG Search Server",
"description": "Provides Vectara specific functionalities.",
"uri": "https://api.example.com/vectara_mcp/sse/",
"transport": "sse",
"auth": {
"type": "bearer",
"token": "abcdef......"
}
}Response
The updated tool server details.
Example response
{
"id": "tsr_rag_search",
"name": "RAG Search Server",
"type": "mcp",
"description": "Provides RAG search capabilities for documents.",
"uri": "https://api.example.com/sse/",
"headers": {
"Content-Type": "application/json"
},
"transport": "sse",
"metadata": {
"version": "1.0"
}
}