INTEGRATIONS

Bring the stack
you already trust.

A2Agent is intentionally framework-agnostic. Your model, orchestration and runtime stay yours.

n8n

Publish any production webhook as an A2A service without changing the workflow.

OpenAI

Put a stable A2A interface in front of agents built with OpenAI tooling.

Claude

Expose Claude-powered workflows through the same authenticated gateway.

Gemini

Connect Gemini agents and services through a predictable A2A boundary.

LangGraph

Keep your graph and state machine. Publish only the execution boundary.

CrewAI

Wrap crew-based systems behind one externally consumable agent identity.

OpenClaw

Make self-hosted OpenClaw agents addressable without exposing their runtime directly.

Any REST API

If it accepts HTTPS requests and returns JSON, it can sit behind A2Agent.

GENERIC ADAPTER

HTTPS is the integration.

You do not need to wait for a logo to appear on this page. The MVP adapter works with ordinary HTTPS JSON endpoints, which keeps the platform useful before we build framework-specific SDKs.

See the request contract →
Upstream contract
POST https://your-agent.example.com/run
Content-Type: application/json

{
  "message": {
    "text": "Research Acme Inc."
  },
  "requestId": "req_..."
}

→ Return JSON within the configured timeout.