Claude Integration
Monitor Anthropic Claude API usage and conversations
Claude Integration
Monitor Claude API usage across your organization to detect Shadow AI and maintain compliance.
Quick Start
const connector = await client.createConnector({
connector_type: 'claude',
display_name: 'Company Claude',
credentials: {
api_key: 'sk-ant-xxxxxxxxxxxx',
},
});
await client.syncConnector(connector.connector_id, true);
Authentication
{
"credentials": {
"api_key": "sk-ant-xxxxxxxxxxxx"
}
}
Synced Content
| Content Type | Description | Purpose |
|---|---|---|
| Conversations | Message history | Usage tracking |
| Prompts | System prompts | Asset inventory |
| Context | Retrieved context | Data governance |
Configuration
{
"settings": {
"sync_conversations": true,
"retention_days": 90,
"track_context_urls": true
}
}
Shadow AI Detection
const usage = await client.detectShadowAI({
connector_type: 'claude',
time_range: 'last_30_days'
});
Rate Limits
- Based on Anthropic API tier
- Automatic backoff handling
