Skip to main content
POST
/
api
/
admin
/
mcpservers
Get list of MCP servers
curl --request POST \
  --url https://pria.praxislxp.com/api/admin/mcpservers \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "institution": "<string>",
  "minimum": true
}
'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "institution": "<string>",
      "user": "<string>",
      "server_type": "url",
      "server_url": "<string>",
      "require_approval": {
        "enabled": false,
        "skip_approval_tools": [
          "<string>"
        ]
      },
      "authorization_header": "<string>",
      "tool_configuration": {
        "enabled": true,
        "allowed_tools": [
          "<string>"
        ]
      },
      "description": "<string>",
      "created": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

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

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Body

application/json
institution
string

Filter by institution ID

minimum
boolean

Return minimal data

Response

200 - application/json

MCP servers retrieved successfully

success
boolean
data
object[]