catalog
List the MCP servers catalog
Returns the curated catalog of well-known remote MCP servers, used to prefill MCP registry creation.
GET
/
v1
/
mcp-servers-catalog
List the MCP servers catalog
curl --request GET \
--url https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog \
--header 'Authorization: <api-key>'import requests
url = "https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog', 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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog",
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: <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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"mcp_servers": [
{
"auth_headers": [
{
"description": "<string>",
"name": "<string>",
"required": true,
"scheme": "<string>",
"secret": true
}
],
"auth_hint": "<string>",
"category": "<string>",
"code": "<string>",
"description": "<string>",
"display_name": "<string>",
"metadata": {},
"oauth": {
"authorize_url": "<string>",
"dcr": true,
"pkce": true,
"registration": "<string>",
"required": true,
"resource": "<string>",
"resource_metadata": true,
"scopes": [
"<string>"
],
"token_url": "<string>"
},
"relevance": 123,
"requires_auth": true,
"requires_config": true,
"scopes": [
"<string>"
],
"source": "<string>",
"tools": [
{
"description": "<string>",
"name": "<string>"
}
],
"transport": "<string>",
"url": "<string>",
"url_variables": [
{
"description": "<string>",
"in": "<string>",
"name": "<string>",
"required": true,
"secret": true
}
],
"vendor": "<string>"
}
]
}{
"error": "<string>",
"message": "<string>"
}⌘I
List the MCP servers catalog
curl --request GET \
--url https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog \
--header 'Authorization: <api-key>'import requests
url = "https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog', 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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog",
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: <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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://agentgateway-admin.dev.neuraltrust.ai/v1/mcp-servers-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"mcp_servers": [
{
"auth_headers": [
{
"description": "<string>",
"name": "<string>",
"required": true,
"scheme": "<string>",
"secret": true
}
],
"auth_hint": "<string>",
"category": "<string>",
"code": "<string>",
"description": "<string>",
"display_name": "<string>",
"metadata": {},
"oauth": {
"authorize_url": "<string>",
"dcr": true,
"pkce": true,
"registration": "<string>",
"required": true,
"resource": "<string>",
"resource_metadata": true,
"scopes": [
"<string>"
],
"token_url": "<string>"
},
"relevance": 123,
"requires_auth": true,
"requires_config": true,
"scopes": [
"<string>"
],
"source": "<string>",
"tools": [
{
"description": "<string>",
"name": "<string>"
}
],
"transport": "<string>",
"url": "<string>",
"url_variables": [
{
"description": "<string>",
"in": "<string>",
"name": "<string>",
"required": true,
"secret": true
}
],
"vendor": "<string>"
}
]
}{
"error": "<string>",
"message": "<string>"
}