Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Returns a list of available personal connectors that can be configured for use with AI assistants.
GEThttps://api.freddy.aitronos.com/v1/personal-connectors

Retrieves all available personal connector definitions, including official (externally hosted), Aitronos-built (hosted by Aitronos), and custom connectors.

Query Parameters

type string optional

Filter by connector type. Values: official, aitronos_built, custom.

category string optional

Filter by category. Values: productivity, development, communication, design, custom.

status string optional

Filter by status. Values: active, deprecated, maintenance. Defaults to active.

limit integer optional

Maximum number of connectors to return. Defaults to 20. Maximum: 100.

offset integer optional

Number of connectors to skip for pagination. Defaults to 0.

Bash
curl https://api.freddy.aitronos.com/v1/personal-connectors \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "object": "list",
  "data": [
    {
      "id": "pcon_github",
      "object": "personal_connector",
      "name": "GitHub",
      "type": "official",
      "connectorId": "github",
      "description": "Official GitHub MCP Server",
      "iconUrl": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png",
      "category": "development",
      "version": "1.0.0",
      "status": "active",
      "serverUrl": "https://github-mcp.example.com",
      "serverType": "http",
      "createdAt": "2025-01-01T00:00:00Z",
      "updatedAt": "2025-01-01T00:00:00Z"
    },
    {
      "id": "pcon_clickup",
      "object": "personal_connector",
      "name": "ClickUp",
      "type": "aitronos_built",
      "connectorId": "clickup",
      "description": "ClickUp task management integration",
      "iconUrl": "https://clickup.com/landing/images/logo-clickup_color.svg",
      "category": "productivity",
      "version": "1.0.0",
      "status": "active",
      "serverUrl": "http://clickup-mcp:8000",
      "serverType": "http",
      "createdAt": "2025-01-01T00:00:00Z",
      "updatedAt": "2025-01-01T00:00:00Z"
    }
  ],
  "hasMore": false,
  "total": 2
}