Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url https://api.zudu.ai/api/mcp-servers/validate-url \ --header 'Content-Type: application/json' \ --header 'X-API-KEY: <api-key>' \ --header 'X-API-SECRET: <api-key>' \ --data ' { "url": "https://api.example.com/mcp-server" } '
{ "message": "URL validation successful", "status": "success", "error": null, "data": { "valid": true, "url": "https://api.example.com/mcp-server", "checks": { "format_valid": true, "is_duplicate": false, "connectivity_test": "success" }, "recommendations": [] } }
Validates an MCP server URL (current behavior).
API Key for MCP server and external service authentication
API Secret for MCP server and external service authentication
MCP server URL to validate
URL validation successful