ArmorIQ LogoArmorIQ SDK
Integrations

Anthropic

ArmorIQ integration for the Anthropic SDK (coming soon)

Anthropic Integration

Coming soon — Python and TypeScript. The Anthropic adapter is not yet ready. For a working integration today, see the Google ADK integration (Python).

Planned API

A thin wrapper around the Anthropic SDK's tool-use loop.

# pip install "armoriq-sdk[anthropic]"   # extra reserved; adapter coming soon
from armoriq_sdk.integrations import ArmorIQAnthropic

client = ArmorIQAnthropic(anthropic_client, armoriq_client=armoriq)
response = client.messages.create(
    model="claude-opus-4-7",
    tools=[...],
    messages=[...],
)
// Coming soon.
import Anthropic from '@anthropic-ai/sdk';
import { ArmorIQAnthropic } from '@armoriq/sdk/integrations/anthropic';

const client = new ArmorIQAnthropic(new Anthropic(), { armoriqClient: armoriq });
const response = await client.messages.create({
  model: 'claude-opus-4-7',
  tools: [...],
  messages: [...],
});

The wrapper will intercept tool_use blocks, build a plan, mint a token, and route each call through ArmorIQ's proxy before handing results back to Claude.

Want early access?

Open an issue on the SDK repo.

On this page