Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Retrieves details about a specific personal connector, including its configuration schema and available authentication methods.
GEThttps://api.freddy.aitronos.com/v1/personal-connectors/{connector_id}

Returns the full details of a personal connector definition.

Path Parameters

connector_id string required

The ID of the personal connector to retrieve. Example: pcon_github, pcon_clickup.

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

Response

{
  "id": "pcon_github",
  "object": "personal_connector",
  "name": "GitHub",
  "type": "official",
  "connectorId": "github",
  "description": "Official GitHub MCP Server for repository management",
  "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",
  "metadata": {
    "supportedFeatures": ["repositories", "issues", "pull_requests"],
    "authMethod": "oauth2",
    "configurationSchema": {
      "type": "object",
      "properties": {
        "repository": {
          "type": "string",
          "description": "Repository in format 'owner/repo'"
        },
        "branch": {
          "type": "string",
          "description": "Default branch",
          "default": "main"
        }
      },
      "required": ["repository"]
    }
  },
  "createdAt": "2025-01-01T00:00:00Z",
  "updatedAt": "2025-01-01T00:00:00Z"
}