curl --request GET \
--url https://tavusapi.com/v2/connectors/{connector_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://tavusapi.com/v2/connectors/{connector_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://tavusapi.com/v2/connectors/{connector_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tavusapi.com/v2/connectors/{connector_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tavusapi.com/v2/connectors/{connector_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tavusapi.com/v2/connectors/{connector_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tavusapi.com/v2/connectors/{connector_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"connector_id": "c8-58ea0f6420b2",
"owner_id": 4309,
"team_id": null,
"name": "Linear",
"source": "mcp",
"server_url": "https://mcp.linear.app/mcp",
"auth_config": {
"type": "oauth2"
},
"selected_tool_names": null,
"oauth_status": "linked",
"oauth_scopes": [
"read",
"write"
],
"access_token_expires_at": "2026-08-18T09:14:00",
"last_indexed_at": "2026-08-17T18:20:11",
"last_index_error": null,
"created_at": "2026-08-17T18:02:56.838918",
"updated_at": "2026-08-17T18:20:11.563911"
}Get Connector
Returns a single connector. Secrets are omitted; check oauth_status to see whether an OAuth connector is usable.
curl --request GET \
--url https://tavusapi.com/v2/connectors/{connector_id} \
--header 'x-api-key: <api-key>'import requests
url = "https://tavusapi.com/v2/connectors/{connector_id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://tavusapi.com/v2/connectors/{connector_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tavusapi.com/v2/connectors/{connector_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://tavusapi.com/v2/connectors/{connector_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://tavusapi.com/v2/connectors/{connector_id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://tavusapi.com/v2/connectors/{connector_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"connector_id": "c8-58ea0f6420b2",
"owner_id": 4309,
"team_id": null,
"name": "Linear",
"source": "mcp",
"server_url": "https://mcp.linear.app/mcp",
"auth_config": {
"type": "oauth2"
},
"selected_tool_names": null,
"oauth_status": "linked",
"oauth_scopes": [
"read",
"write"
],
"access_token_expires_at": "2026-08-18T09:14:00",
"last_indexed_at": "2026-08-17T18:20:11",
"last_index_error": null,
"created_at": "2026-08-17T18:02:56.838918",
"updated_at": "2026-08-17T18:20:11.563911"
}Authorizations
Path Parameters
The unique identifier of the connector.
"c8-58ea0f6420b2"
Response
Connector returned
An MCP server you have registered. Secret material is never returned: auth_config comes back with its type and non-secret fields only, and OAuth tokens are omitted entirely.
The unique identifier of the connector. Use this everywhere a connector is referenced, including layers.mcp.connectors on a PAL.
"c8-58ea0f6420b2"
The account that owns the connector.
4309
Team the connector belongs to, when applicable.
null
Human-readable name. Also the basis of the label the background agent sees for this service.
"Linear"
Connector kind. mcp today.
"mcp"
The MCP server endpoint.
"https://mcp.linear.app/mcp"
How Tavus authenticates to the server, with secrets removed. See the create request for the accepted shapes.
{ "type": "oauth2" }
Always null on connectors created today, and not settable: the create and update endpoints reject the field. A leftover from the removed tool importer - tool scoping is a per-PAL decision, so use layers.mcp.connector_tools.
null
none for non-OAuth connectors. pending once an authorize URL has been issued but the flow is not finished. linked when Tavus holds a working token. needs_reauth when the refresh token stopped working - send the customer through Reconnect OAuth.
none, pending, linked, needs_reauth "linked"
Scopes granted by the authorization server.
["read", "write"]
When the current access token expires. Tavus refreshes it automatically while the connector stays linked.
"2026-08-18T09:14:00"
When tools were last imported from the server. null if never indexed.
"2026-08-17T18:20:11"
Why the last import failed, if it did.
null
"2026-08-17T18:02:56.838918"
"2026-08-17T18:20:11.563911"

