curl --request GET \
--url https://api.agents.slng.ai/v1/agents/mcp-servers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agents.slng.ai/v1/agents/mcp-servers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agents.slng.ai/v1/agents/mcp-servers', 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.agents.slng.ai/v1/agents/mcp-servers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.agents.slng.ai/v1/agents/mcp-servers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.agents.slng.ai/v1/agents/mcp-servers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agents.slng.ai/v1/agents/mcp-servers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "4f9a2b1c-8d3e-4a2b-9c1d-2e3f4a5b6c7d",
"name": "crawler",
"url_template": "https://mcp.example.com",
"transport": "streamable_http",
"revision": 1,
"capability_status": "healthy",
"capability_observed_at": "2026-08-01T12:00:00Z",
"capability_tool_count": 3
}
]{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}List MCP Servers
Return the organisation’s live (not soft-deleted) MCP servers, ordered by name then id. Each item reports the capability status, when capabilities were last observed, and the discovered tool count.
curl --request GET \
--url https://api.agents.slng.ai/v1/agents/mcp-servers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agents.slng.ai/v1/agents/mcp-servers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agents.slng.ai/v1/agents/mcp-servers', 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.agents.slng.ai/v1/agents/mcp-servers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.agents.slng.ai/v1/agents/mcp-servers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.agents.slng.ai/v1/agents/mcp-servers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.agents.slng.ai/v1/agents/mcp-servers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body[
{
"id": "4f9a2b1c-8d3e-4a2b-9c1d-2e3f4a5b6c7d",
"name": "crawler",
"url_template": "https://mcp.example.com",
"transport": "streamable_http",
"revision": 1,
"capability_status": "healthy",
"capability_observed_at": "2026-08-01T12:00:00Z",
"capability_tool_count": 3
}
]{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}{
"detail": "<string>",
"error": {
"code": "<string>",
"message": "<string>",
"request_id": "<string>",
"retryable": true,
"fields": [
{}
]
}
}Authorizations
Your SLNG consumer API key.
Query Parameters
Maximum number of MCP servers to return in one page. Defaults to 100.
1 <= x <= 200Number of MCP servers to skip before collecting the page, applied after any name filter. Defaults to 0.
0 <= x <= 10000Filter by exact, case-sensitive MCP server names. Repeat the parameter for OR matching. Pagination is applied after filtering.
1281 - 200Response
A page of the organisation's MCP servers.
Endpoint URL of the MCP server, with any {{$NAME}} Vault secret placeholders left unresolved.
Configured transport, either streamable_http or sse.
streamable_http, sse Latest capability health, one of unknown, healthy, unavailable, invalid, or circuit_open. Fetch the full server record for the meaning of each value.
unknown, healthy, unavailable, invalid, circuit_open