Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.zudu.ai/api/mcp-servers/{mcpServerId} \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>'import requests
url = "https://api.zudu.ai/api/mcp-servers/{mcpServerId}"
headers = {
"X-API-KEY": "<api-key>",
"X-API-SECRET": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-API-KEY': '<api-key>', 'X-API-SECRET': '<api-key>'}
};
fetch('https://api.zudu.ai/api/mcp-servers/{mcpServerId}', 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.zudu.ai/api/mcp-servers/{mcpServerId}",
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>",
"X-API-SECRET: <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.zudu.ai/api/mcp-servers/{mcpServerId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-API-SECRET", "<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.zudu.ai/api/mcp-servers/{mcpServerId}")
.header("X-API-KEY", "<api-key>")
.header("X-API-SECRET", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zudu.ai/api/mcp-servers/{mcpServerId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-API-SECRET"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "MCP server retrieved successfully",
"status": "success",
"error": null,
"data": {
"id": "mcp_8c180796-e6d7-4343-88b5-5df0846fef69",
"organization_id": "org_2zC2v0GqxbrfKq1rKazb3gFcPEq",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"name": "Everything MCP Server",
"approval_policy": "require_approval_all",
"transport": "SSE",
"description": "Reference implementation MCP server with all features",
"request_headers": {
"Accept": "application/json",
"User-Agent": "MCP-Client/1.0"
},
"is_creator": true,
"role": "admin",
"created_at": 1751401457604,
"updated_at": 1751401457604,
"tool_approval_hashes": [],
"dependent_agents": [],
"config": {
"tool_approval_hashes": [],
"approval_policy": "require_approval_all",
"name": "Everything MCP Server",
"request_headers": {
"Accept": "application/json",
"User-Agent": "MCP-Client/1.0"
},
"description": "Reference implementation MCP server with all features",
"transport": "SSE",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json"
},
"access_info": {
"role": "admin",
"creator_email": null,
"creator_name": null,
"is_creator": true
},
"metadata": {
"owner_user_id": null,
"created_at": 1751401457604
}
}
}{
"message": "MCP server not found",
"status": "error",
"error": "MCP server with ID 'mcp_invalid_id' does not exist in organization",
"data": null
}{
"message": "Internal server error",
"status": "error",
"error": "Server error",
"data": null
}Retrieves an MCP server by ID (current behavior).
curl --request GET \
--url https://api.zudu.ai/api/mcp-servers/{mcpServerId} \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>'import requests
url = "https://api.zudu.ai/api/mcp-servers/{mcpServerId}"
headers = {
"X-API-KEY": "<api-key>",
"X-API-SECRET": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-API-KEY': '<api-key>', 'X-API-SECRET': '<api-key>'}
};
fetch('https://api.zudu.ai/api/mcp-servers/{mcpServerId}', 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.zudu.ai/api/mcp-servers/{mcpServerId}",
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>",
"X-API-SECRET: <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.zudu.ai/api/mcp-servers/{mcpServerId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-API-SECRET", "<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.zudu.ai/api/mcp-servers/{mcpServerId}")
.header("X-API-KEY", "<api-key>")
.header("X-API-SECRET", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zudu.ai/api/mcp-servers/{mcpServerId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-API-SECRET"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "MCP server retrieved successfully",
"status": "success",
"error": null,
"data": {
"id": "mcp_8c180796-e6d7-4343-88b5-5df0846fef69",
"organization_id": "org_2zC2v0GqxbrfKq1rKazb3gFcPEq",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"name": "Everything MCP Server",
"approval_policy": "require_approval_all",
"transport": "SSE",
"description": "Reference implementation MCP server with all features",
"request_headers": {
"Accept": "application/json",
"User-Agent": "MCP-Client/1.0"
},
"is_creator": true,
"role": "admin",
"created_at": 1751401457604,
"updated_at": 1751401457604,
"tool_approval_hashes": [],
"dependent_agents": [],
"config": {
"tool_approval_hashes": [],
"approval_policy": "require_approval_all",
"name": "Everything MCP Server",
"request_headers": {
"Accept": "application/json",
"User-Agent": "MCP-Client/1.0"
},
"description": "Reference implementation MCP server with all features",
"transport": "SSE",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json"
},
"access_info": {
"role": "admin",
"creator_email": null,
"creator_name": null,
"is_creator": true
},
"metadata": {
"owner_user_id": null,
"created_at": 1751401457604
}
}
}{
"message": "MCP server not found",
"status": "error",
"error": "MCP server with ID 'mcp_invalid_id' does not exist in organization",
"data": null
}{
"message": "Internal server error",
"status": "error",
"error": "Server error",
"data": null
}API Key for MCP server and external service authentication
API Secret for MCP server and external service authentication
MCP server ID
"mcp_8c180796-e6d7-4343-88b5-5df0846fef69"