Personal Connectors are integrations that enable your AI assistants to interact with external services on your behalf. Once configured, your assistants can:
- Create and manage tasks in ClickUp or Jira
- Access and modify GitHub repositories
- Send messages in Microsoft Teams
- Connect to any custom MCP (Model Context Protocol) server
First, see what connectors are available:
curl https://api.freddy.aitronos.com/v1/personal-connectors \
-H "api-key: $FREDDY_API_KEY"Available Connector Types:
- Official - Externally hosted (GitHub, Figma Local)
- Aitronos-Built - Hosted by Aitronos (ClickUp, Jira, Microsoft Teams)
- Custom - Your own MCP server
Before configuring a connector, obtain the necessary credentials from the service:
For GitHub:
- Go to GitHub Settings → Developer Settings → Personal Access Tokens
- Click "Generate new token (classic)"
- Select scopes:
repo,read:org,workflow - Copy the generated token (starts with
ghp_)
For ClickUp:
- Go to ClickUp Settings → Apps
- Click "Generate" under API Token
- Copy your API token (starts with
pk_)
For Jira:
- Go to Atlassian Account Settings → Security → API tokens
- Click "Create API token"
- Copy the generated token
Configure the connector with your credentials:
curl https://api.freddy.aitronos.com/v1/personal-connectors/configurations \
-H "api-key: $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"connectorId": "github",
"name": "My GitHub",
"configuration": {
"defaultRepo": "owner/repo"
},
"credentials": {
"token": "ghp_your_github_token_here"
},
"description": "Personal GitHub integration"
}'Important: Your credentials are automatically validated when you create the configuration. If the credentials are invalid, you'll receive an error immediately.
Test that your connector is working:
curl -X POST https://api.freddy.aitronos.com/v1/personal-connectors/configurations/{config_id}/test \
-H "api-key: $FREDDY_API_KEY"Once configured, your personal connectors are automatically available to all your AI assistants. When you chat with an assistant, it can use your connectors to perform actions:
Example conversation:
You: Create a GitHub issue for the bug we just discussed