GET
/
mcp-server
/
instance
/
get
/
{instance_id}
curl --request GET \
  --url https://api.klavis.ai/mcp-server/instance/get/{instance_id} \
  --header 'Authorization: Bearer <token>'
{
  "instanceId": "<string>",
  "isAuthenticated": false,
  "serverName": "",
  "platform": "",
  "externalUserId": ""
}

Authorizations

Authorization
string
header
required

Enter your API key with the format: 'Bearer your-api-key'

Path Parameters

instance_id
string
required

The ID of the connection instance whose status is being checked. This is returned by the Create API.

Response

200
application/json
Successful Response
instanceId
string | null

The unique identifier of the connection instance.

isAuthenticated
boolean
default:false

Indicates whether the instance is authenticated successfully.

serverName
string
default:

The name of the MCP server associated with the instance.

platform
string
default:

The platform associated with the instance (e.g., 'Den', 'CamelAI').

externalUserId
string
default:

The user's identifier on the external platform.