curl --request GET \
--url https://api.nekt.ai/api/v1/live-connections/ \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nekt.ai/api/v1/live-connections/"
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://api.nekt.ai/api/v1/live-connections/', 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://api.nekt.ai/api/v1/live-connections/",
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://api.nekt.ai/api/v1/live-connections/"
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://api.nekt.ai/api/v1/live-connections/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nekt.ai/api/v1/live-connections/")
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{
"count": 123,
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connector": "<string>",
"connector_version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connector_config": {},
"has_callback_webhook": true,
"credentials_version": 123,
"draft": true,
"error": true,
"archived": true,
"tags": [
"<unknown>"
],
"permission_level": "<string>",
"created_by": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"active": true,
"slug": "<string>",
"description": "<string>",
"available_tools": [
"<string>"
]
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}List MCP Connections
Connections to external systems that AI agents can call tools against.
A connection is created as a draft pinned to the connector’s current version. Fill its
credentials directly with config, or mint a setup link and let a third party fill
them in their own browser; then PATCH {"active": true} to put it in service. Each
connector may hold several connections, one per account you connect, each with its own
slug — which is also the namespace its tools are exposed under.
On plans with access control, visibility and writes follow the access granted on each connection: viewers see it, editors edit its description and tags, managers change everything else — configuration, state, slug, the exposed tools, setup links and disconnection. Admins and owners always have full access.
curl --request GET \
--url https://api.nekt.ai/api/v1/live-connections/ \
--header 'x-api-key: <api-key>'import requests
url = "https://api.nekt.ai/api/v1/live-connections/"
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://api.nekt.ai/api/v1/live-connections/', 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://api.nekt.ai/api/v1/live-connections/",
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://api.nekt.ai/api/v1/live-connections/"
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://api.nekt.ai/api/v1/live-connections/")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nekt.ai/api/v1/live-connections/")
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{
"count": 123,
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connector": "<string>",
"connector_version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"connector_config": {},
"has_callback_webhook": true,
"credentials_version": 123,
"draft": true,
"error": true,
"archived": true,
"tags": [
"<unknown>"
],
"permission_level": "<string>",
"created_by": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"active": true,
"slug": "<string>",
"description": "<string>",
"available_tools": [
"<string>"
]
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Authorizations
API Key authentication. Format: 'x-api-key: api_key'
Query Parameters
A page number within the paginated result set.
Number of results to return per page.
A search term.
Ordering
slug- Slug-slug- Slug (descending)connector_slug- Connector slug-connector_slug- Connector slug (descending)description- Description-description- Description (descending)created_by- Created by-created_by- Created by (descending)active- Active-active- Active (descending)created_at- Created at-created_at- Created at (descending)updated_at- Updated at-updated_at- Updated at (descending)
-active, -connector_slug, -created_at, -created_by, -description, -slug, -updated_at, active, connector_slug, created_at, created_by, description, slug, updated_at Was this page helpful?