Probe an MCP server for available tools
curl --request POST \
--url https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"server_url": "<string>",
"headers": {}
}
'import requests
url = "https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe"
payload = {
"server_url": "<string>",
"headers": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({server_url: '<string>', headers: {}})
};
fetch('https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe', 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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe",
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([
'server_url' => '<string>',
'headers' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe"
payload := strings.NewReader("{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"tools": [
{
"name": "<string>",
"description": "<string>",
"input_schema": {}
}
],
"error": "<string>",
"code": "listing_unavailable"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Connections
Probe an MCP server for available tools
Probe an MCP server URL and list the tools it exposes. Useful as a dry-run before creating a connection — verifies the URL is reachable, that authentication headers (if any) are correct, and surfaces the tool catalog. Performs no writes; sits alongside /v2/teams/:team_id/connections/oauth/mcp/check (which probes the same URL for OAuth support).
POST
/
v2
/
teams
/
{teamId}
/
connections
/
mcp
/
probe
Probe an MCP server for available tools
curl --request POST \
--url https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"server_url": "<string>",
"headers": {}
}
'import requests
url = "https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe"
payload = {
"server_url": "<string>",
"headers": {}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({server_url: '<string>', headers: {}})
};
fetch('https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe', 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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe",
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([
'server_url' => '<string>',
'headers' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe"
payload := strings.NewReader("{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.duvo.ai/v2/teams/{teamId}/connections/mcp/probe")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.duvo.ai/v2/teams/{teamId}/connections/mcp/probe")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"server_url\": \"<string>\",\n \"headers\": {}\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"tools": [
{
"name": "<string>",
"description": "<string>",
"input_schema": {}
}
],
"error": "<string>",
"code": "listing_unavailable"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Authorizations
API key authentication. Get your API key from the Duvo dashboard.
Path Parameters
Body
application/json
Raw MCP server URL to probe (for custom MCP servers)
Catalog integration slug. The backend resolves the MCP server URL and dummy auth headers server-side — no server_url or headers needed.
Available options:
googlecalendar, google-calendar, gmail, slack, googledocs, googlesheets, googledrive, firecrawl, exa, exa-search, exa-company-search, exa-people-search, deep-research, system, browser-agent, browser-agent-devtools, notion, linear, confluence, custom_mcp, user_mcp, snowflake, sharepoint, teams, onedrive, bigquery, databricks, netsuite, outlook, microsoft-calendar, excel, word, saps4hana, md365, businesscentral, oraclefusion, workday, coupa, signavio, sap-ecc, msteams, human-in-the-loop, email-attachments-reader, document-processor, google-docs, google-sheets, google-drive, outbound-call, case-queue-producer, case-queue-consumer, handover, shopify, hubspot, zendesk, intercom, powerbi, salesforce, pipedrive, tableau, image-generation, forecasting, supabase, attio, amplitude, websets, firecrawl-platform, duvo-computer-use, duvo-computer-use-rdp, eu-commodity-prices, asana, ssh, scheduling, github, linear-native, notion-native, granola, apify, bamboohr, edi, maersk, dhl, fedex, ups, dsv, trinity-logistics, ontrac, dachser, hellmann, omni-logistics, ceva-logistics, dpd, canada-post Optional HTTP headers for authentication (raw server_url mode only)
Show child attributes
Show child attributes
Was this page helpful?