Home/AI Agents/composio
composio logo

composio

ComposioHQ/composio

Build AI agents that turn intent into action.

GraphCanon updated 4d · GitHub synced 4d

30k stars4.7k forksLast push 4d TypeScript MIT

Decision brief

Composio is a development toolkit and workbench that supports the creation of AI agents with features such as tool search, context management, authentication, and more. It operates in TypeScript under the MIT license.

Good fit when

  • - When you are developing AI agents and require robust functionalities like advanced tool search and context management within a sandboxed environment.
  • - If you prioritize using TypeScript for development and want to leverage its benefits while building AI capabilities.

Avoid when

  • - For projects that do not align with TypeScript, which could limit the utility of Composio’s specific development ecosystem.
  • - When the project's requirements extend beyond basic tool search and context management; other specialized frameworks may offer more tailored solutions for those needs.

Observed Jul 11, 2026 · Source: enrich:decision_facts

Verify the decision

Adoption

Package downloads where a registry match exists. GitHub stars (29,715) are secondary evidence.

npm downloads (30d)
21,993·npm downloads API·4d

Maintenance and security

Full trust report
Maintenance
Very active (0d since push)
As of 4d
Provenance
Not a fork · Organization account
As of 4d
Security (OSV)
No MCP manifest
As of 1mo

Public GitHub metadata and optional OSV scans. Signals, not a guarantee. Trust methodology.

Backing

Company context for Composio. Display-only - separate from trust and ranking.

Company
Composio·GitHub org profile·1mo
Commercial model
Pure OSS·GitHub org profile (public repos)·1mo

Install

npm install composio
npm

How it fits your stack(19)

Typed graph edges - alternatives, integrations, successors, and dependencies. Ranked by relationship type, not raw GitHub stars.

Alternative

Integrates

Relationship graph

Optional deeper exploration of typed edges and category neighbours.

Similar tools

Same-category neighbours not already linked as typed edges.

Evidence and technical details

Sourced facts, taxonomy, compatibility claims, README excerpt, and machine-readable endpoints.

Overview

Composio powers toolkits and a sandboxed workbench for building AI agents with functionalities like tool search, context management, authentication, and more.

Capability facts

MCP server
No MCP server detected

Source: repo_scan · Aug 16, 2026

Languages
typescript, javascript, python

Source: github.language+package.json+pyproject.toml · Aug 16, 2026

Categories

Graph entities

Compatibility

Sourced claims from the README excerpt - not unsourced marketing copy.

LangChain integrationLangChain

Source: README excerpt (regex_v1, Aug 16, 2026)

- **Provider adapters** for OpenAI Agents, Claude Agent SDK, Vercel AI SDK, LangChain, and [more](#providers)
Source link
Node.js runtimeNode.js

Source: README excerpt (regex_v1, Aug 16, 2026)

npm install @composio/core @composio/openai-agents @openai/agents
Source link
Python runtimePython

Source: README excerpt (regex_v1, Aug 16, 2026)

- **[`composio`](python)**: Python SDK
Source link

Tags

README

Composio logo

composio.devDocumentationQuickstartChangelog

GitHub stars npm PyPI Discord HVTrust

Composio

Composio gives your AI agents 1000+ pre-authenticated toolkits, per-user sessions, authentication, triggers, and a sandbox, so you can ship agents that turn intent into action.

This is the Composio SDK monorepo. It contains:

  • @composio/core: TypeScript SDK
  • composio: Python SDK
  • composio CLI: search, execute, and script tools from your shell
  • Provider adapters for OpenAI Agents, Claude Agent SDK, Vercel AI SDK, LangChain, and more

Quickstart

Create a session for a user, hand its tools to your agent, and let the agent take action across 1000+ apps. Grab a COMPOSIO_API_KEY from the dashboard first.

TypeScript

npm install @composio/core @composio/openai-agents @openai/agents

@composio/core intentionally packages its TypeScript source and SDK docs so the installed package is inspectable to coding agents. If you want a smaller install with the same API, use @composio/slim.

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 assistant. Use Composio tools to take action.",
  tools,
});

const result = await run(agent, "Summarize my emails from today");
console.log(result.finalOutput);

Python

pip install composio composio-openai-agents openai-agents
from composio import Composio
from composio_openai_agents import OpenAIAgentsProvider
from agents import Agent, Runner

composio = Composio(provider=OpenAIAgentsProvider())

# Each session is scoped to one of your users
session = composio.create(user_id="user_123")
tools = session.tools()

agent = Agent(
    name="Personal Assistant",
    instructions="You are a helpful assistant. Use Composio tools to take action.",
    tools=tools,
)

result = Runner.run_sync(starting_agent=agent, input="Summarize my emails from today")
print(result.final_output)

By default a session gets meta tools that discover, authenticate, and execute app tools at runtime, so you don't load hundreds of tool definitions into context. Store session.session_id and reuse it with composio.use() across turns. See [what a session is](https://docs.composio

For agents

This page has a .md twin and JSON over the API.

Was this helpful?

Anonymous feedback helps us improve pages and translations.