@composio/openai-agents
Composio provider for the OpenAI Agents SDK (@openai/agents). It converts Composio tools into the Agents SDK's native tool format so your agents can act across 1000+ apps.
Installation
npm install @composio/core @composio/openai-agents @openai/agents
Set two environment variables:
COMPOSIO_API_KEYfrom the Composio dashboardOPENAI_API_KEYfrom OpenAI
Quickstart
Create a session for your user, hand its tools to an agent, and run it:
import { Composio } from "@composio/core";
import { OpenAIAgentsProvider } from "@composio/openai-agents";
import { Agent, run } from "@openai/agents";
const composio = new Composio({ provider: new OpenAIAgentsProvider() });
// Each session is scoped to one of your users
const session = await composio.create("user_123");
const tools = await session.tools();
const agent = new Agent({
name: "Personal Assistant",
instructions: "You are a helpful personal assistant. Use Composio tools to take action.",
model: "gpt-5.2",
tools,
});
const result = await run(agent, "Summarize my emails from today");
console.log(result.finalOutput);
For multi-turn conversations, store session.sessionId and reuse it with composio.use(sessionId) instead of creating a new session each turn.
Strict mode
Pass strict: true to enable strict JSON schema validation for tool parameters (see the Agents SDK options reference):
const provider = new OpenAIAgentsProvider({ strict: true });