Skip to main content
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": {}
}
'
{
  "success": true,
  "tools": [
    {
      "name": "<string>",
      "description": "<string>",
      "input_schema": {}
    }
  ],
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.duvo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Get your API key from the Duvo dashboard.

Path Parameters

teamId
string
required

Body

application/json
server_url
string<uri>
required

MCP server URL to test

headers
object

Optional HTTP headers for authentication

Response

Default Response

success
boolean
required
tools
object[]
error
string