# Retrieve Personal Connector div strong 🔨 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. 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`. GitHub ```bash curl https://api.freddy.aitronos.com/v1/personal-connectors/pcon_github \ -H "Authorization: Bearer $FREDDY_API_KEY" ``` ```python import requests response = requests.get( "https://api.freddy.aitronos.com/v1/personal-connectors/pcon_github", headers={"Authorization": f"Bearer {api_key}"} ) connector = response.json() print(f"Connector: {connector['name']}") ``` ```javascript const response = await fetch('https://api.freddy.aitronos.com/v1/personal-connectors/pcon_github', { headers: { 'Authorization': `Bearer ${apiKey}` } }); const connector = await response.json(); console.log(`Connector: ${connector.name}`); ``` ## Response 200 OK ```json { "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" } ``` Errors ```json { "error": { "type": "not_found_error", "message": "Personal connector not found", "code": "connector_not_found" } } ``` ```json { "error": { "type": "authentication_error", "message": "Invalid API key", "code": "invalid_api_key" } } ```