Skip to main content
GET
/
mcp-server
/
strata
/
{strataId}
/
auth
/
{serverName}
Get Strata Auth
curl --request GET \
  --url https://api.klavis.ai/mcp-server/strata/{strataId}/auth/{serverName} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "serverName": "<string>",
  "authData": {},
  "isAuthenticated": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Your Klavis AI API key.

Path Parameters

strataId
string
required

The strata server ID

serverName
string
required

The name of the Klavis MCP server to get authentication for (e.g., 'GitHub', 'Jira')

Response

Successful Response

success
boolean
required
serverName
string
required

The name of the server

isAuthenticated
boolean
required

Whether the server has authentication data configured

authData
object | null

The authentication data if available

message
string | null
I