curl --request GET \
--url https://use.hoop.dev/api/mcp-catalogimport requests
url = "https://use.hoop.dev/api/mcp-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://use.hoop.dev/api/mcp-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://use.hoop.dev/api/mcp-catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://use.hoop.dev/api/mcp-catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://use.hoop.dev/api/mcp-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://use.hoop.dev/api/mcp-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"auth": "oauth",
"auth_modes": [
"oauth",
"static"
],
"description": "Linear issue tracking (official)",
"header": "Authorization: Bearer ${TOKEN}",
"name": "linear",
"notes": "<string>",
"transport": "streamable-http",
"url": "https://mcp.linear.app/mcp"
}
]{
"message": "the error description"
}List MCP Server Catalog
List the built-in catalog of publicly hosted remote MCP servers. Used by the connection create page to pre-fill an mcpproxy connection’s endpoint, transport and auth mode from a picker.
curl --request GET \
--url https://use.hoop.dev/api/mcp-catalogimport requests
url = "https://use.hoop.dev/api/mcp-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://use.hoop.dev/api/mcp-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://use.hoop.dev/api/mcp-catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://use.hoop.dev/api/mcp-catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://use.hoop.dev/api/mcp-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://use.hoop.dev/api/mcp-catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"auth": "oauth",
"auth_modes": [
"oauth",
"static"
],
"description": "Linear issue tracking (official)",
"header": "Authorization: Bearer ${TOKEN}",
"name": "linear",
"notes": "<string>",
"transport": "streamable-http",
"url": "https://mcp.linear.app/mcp"
}
]{
"message": "the error description"
}Response
OK
Auth is the mode the provider documents as its default: "none", "static" or "oauth". It seeds the connection form's selection.
"oauth"
AuthModes lists every mode this server actually accepts, always including Auth. Most servers accept exactly one; a few (github, linear, stripe) take either an OAuth login or a long-lived token, and only the admin knows which credential they hold. The form offers a choice when this has more than one entry, and offering a mode absent here would strand the admin on a flow the provider cannot complete.
["oauth", "static"]
Description is a one-line summary of what the server exposes.
"Linear issue tracking (official)"
Header names the static credential header and its value template, in "Name: value" form. Empty when no mode in AuthModes is "static".
"Authorization: Bearer ${TOKEN}"
Name is the catalog key, unique and stable (e.g. "linear").
"linear"
Notes carries provider caveats worth reading before enabling.
Transport is the backend protocol: "streamable-http" or "sse". It is the value for MCP_TRANSPORT.
"streamable-http"
URL is the MCP endpoint, the value for the connection's REMOTE_URL.
"https://mcp.linear.app/mcp"
Was this page helpful?