Skip to main content
GET
/
mcp-connections
List MCP Connections
curl --request GET \
  --url https://app.splox.io/api/v1/mcp-connections \
  --header 'Authorization: Bearer <token>'
{
  "connections": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "url": "<string>",
      "transport_type": "<string>",
      "auth_type": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "image_url": "<string>",
      "auth_config": {},
      "end_user_id": "<string>"
    }
  ],
  "total": 123
}
Lists MCP resources owned by the authenticated user. Use scope=end_user (default) for per-end-user credential bindings, or scope=owner_user for owner-owned MCP servers.

Usage

curl "https://app.splox.io/api/v1/mcp-connections?scope=owner_user" \
  -H "Authorization: Bearer YOUR_TOKEN"

Authorizations

Authorization
string
header
required

API token generated from your Splox account settings. Create tokens at https://app.splox.io/account?tab=settings

Query Parameters

scope
enum<string>

Listing scope: end_user (default) or owner_user

Available options:
end_user,
owner_user
mcp_server_id
string<uuid>

Filter by user MCP server ID (scope=end_user only)

end_user_id
string

Filter by end-user identifier (scope=end_user only)

Response

Connections retrieved successfully

connections
object[]
total
integer