Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.zudu.ai/api/mcp-servers \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>' \
--data '
{
"config": {
"name": "Everything MCP Server",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"description": "Reference implementation MCP server with all features",
"approval_policy": "require_approval_all",
"transport": "SSE",
"request_headers": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"secret_token": {
"secret_id": "secret_token_123"
}
}
}
'import requests
url = "https://api.zudu.ai/api/mcp-servers"
payload = { "config": {
"name": "Everything MCP Server",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"description": "Reference implementation MCP server with all features",
"approval_policy": "require_approval_all",
"transport": "SSE",
"request_headers": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"secret_token": { "secret_id": "secret_token_123" }
} }
headers = {
"X-API-KEY": "<api-key>",
"X-API-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-API-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
config: {
name: 'Everything MCP Server',
url: 'https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json',
description: 'Reference implementation MCP server with all features',
approval_policy: 'require_approval_all',
transport: 'SSE',
request_headers: {'User-Agent': 'MCP-Client/1.0', Accept: 'application/json'},
secret_token: {secret_id: 'secret_token_123'}
}
})
};
fetch('https://api.zudu.ai/api/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.zudu.ai/api/mcp-servers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'config' => [
'name' => 'Everything MCP Server',
'url' => 'https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json',
'description' => 'Reference implementation MCP server with all features',
'approval_policy' => 'require_approval_all',
'transport' => 'SSE',
'request_headers' => [
'User-Agent' => 'MCP-Client/1.0',
'Accept' => 'application/json'
],
'secret_token' => [
'secret_id' => 'secret_token_123'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zudu.ai/api/mcp-servers"
payload := strings.NewReader("{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-API-SECRET", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zudu.ai/api/mcp-servers")
.header("X-API-KEY", "<api-key>")
.header("X-API-SECRET", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zudu.ai/api/mcp-servers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-API-SECRET"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "MCP server created 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": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"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": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"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": "Validation failed",
"status": "error",
"error": "MCP server name is required",
"data": null
}{
"message": "MCP server name already exists",
"status": "error",
"error": "MCP server with name 'Test Server' already exists in organization",
"data": null
}{
"message": "Internal server error",
"status": "error",
"error": "Server error",
"data": null
}Creates an MCP server (current behavior).
curl --request POST \
--url https://api.zudu.ai/api/mcp-servers \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-API-SECRET: <api-key>' \
--data '
{
"config": {
"name": "Everything MCP Server",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"description": "Reference implementation MCP server with all features",
"approval_policy": "require_approval_all",
"transport": "SSE",
"request_headers": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"secret_token": {
"secret_id": "secret_token_123"
}
}
}
'import requests
url = "https://api.zudu.ai/api/mcp-servers"
payload = { "config": {
"name": "Everything MCP Server",
"url": "https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json",
"description": "Reference implementation MCP server with all features",
"approval_policy": "require_approval_all",
"transport": "SSE",
"request_headers": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"secret_token": { "secret_id": "secret_token_123" }
} }
headers = {
"X-API-KEY": "<api-key>",
"X-API-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-API-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
config: {
name: 'Everything MCP Server',
url: 'https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json',
description: 'Reference implementation MCP server with all features',
approval_policy: 'require_approval_all',
transport: 'SSE',
request_headers: {'User-Agent': 'MCP-Client/1.0', Accept: 'application/json'},
secret_token: {secret_id: 'secret_token_123'}
}
})
};
fetch('https://api.zudu.ai/api/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.zudu.ai/api/mcp-servers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'config' => [
'name' => 'Everything MCP Server',
'url' => 'https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json',
'description' => 'Reference implementation MCP server with all features',
'approval_policy' => 'require_approval_all',
'transport' => 'SSE',
'request_headers' => [
'User-Agent' => 'MCP-Client/1.0',
'Accept' => 'application/json'
],
'secret_token' => [
'secret_id' => 'secret_token_123'
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.zudu.ai/api/mcp-servers"
payload := strings.NewReader("{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-API-SECRET", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.zudu.ai/api/mcp-servers")
.header("X-API-KEY", "<api-key>")
.header("X-API-SECRET", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zudu.ai/api/mcp-servers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-API-SECRET"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"config\": {\n \"name\": \"Everything MCP Server\",\n \"url\": \"https://raw.githubusercontent.com/modelcontextprotocol/server-everything/main/package.json\",\n \"description\": \"Reference implementation MCP server with all features\",\n \"approval_policy\": \"require_approval_all\",\n \"transport\": \"SSE\",\n \"request_headers\": {\n \"User-Agent\": \"MCP-Client/1.0\",\n \"Accept\": \"application/json\"\n },\n \"secret_token\": {\n \"secret_id\": \"secret_token_123\"\n }\n }\n}"
response = http.request(request)
puts response.read_body{
"message": "MCP server created 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": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"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": {
"User-Agent": "MCP-Client/1.0",
"Accept": "application/json"
},
"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": "Validation failed",
"status": "error",
"error": "MCP server name is required",
"data": null
}{
"message": "MCP server name already exists",
"status": "error",
"error": "MCP server with name 'Test Server' already exists 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
Show child attributes