TypeScript core SDK
SDKDiscover toolkits, create user-scoped sessions, retrieve tools, and execute actions from TypeScript.
Agent-integration platform and SDK monorepo providing toolkits, tool search, per-user authentication, sessions, triggers, and a sandboxed workbench across TypeScript and Python agent frameworks.
Agent-integration platform and SDK monorepo providing toolkits, tool search, per-user authentication, sessions, triggers, and a sandboxed workbench across TypeScript and Python agent frameworks.
# After creating a Composio account and a least-privileged test connection:
composio search github issuesEach card below corresponds to a component identified in the repository research. Open a component record for its path, purpose, capabilities, dependencies, risks, and relationships.
Discover toolkits, create user-scoped sessions, retrieve tools, and execute actions from TypeScript.
Use the same core API with a smaller package that omits bundled source and documentation.
Use Composio sessions, tools, authentication, and execution from Python applications.
Search, link, execute, and script toolkit operations from a terminal or coding agent.
Translate Composio tools into the native tool format of supported agent frameworks.
Find a small relevant subset of actions from the hosted catalog instead of loading every available schema.
Link and manage user-specific OAuth or API-key connections for external services.
Subscribe to supported external events and deliver them to an agent application.
Give an agent a controlled environment for files, scripts, and longer-running tool workflows.
These capabilities are derived from the current first-party README and supporting documentation. Names follow upstream terminology so you can search the source documentation precisely.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns quickstart. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns typescript. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns python. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns cli. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns providers. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns all packages. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns repository layout. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Upstream treats this as a distinct part of ComposioHQ/composio. In plain language, use this area when your task concerns development. Begin with the documented default, test it on disposable input, and open the source section for its current options and limitations.
Start with one capability card instead of asking the repository to do everything at once. This makes permissions, inputs, and output easier to understand.
Use a sample URL, copied repository, test document, or sandbox account. Keep production credentials and irreplaceable files out of the first run.
Watch Terminal output or the host application's activity view. If the behavior differs from the README, stop with Control + C or cancel inside the host before retrying.
Check generated files, diffs, API responses, logs, or previews. Never assume “command finished” means the result is correct.
Record the working command and non-secret configuration in your project's README. Store secrets in the documented environment file or password manager.
These examples are selected from the repository's first-party documentation. Replace obvious placeholders, keep quotation marks intact, and run them only in the context indicated by the surrounding explanation.
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)Environment variables and application connection/session configuration
A configuration file changes behavior without changing source code. Make one change at a time and keep a backup before editing JSON, TOML, YAML, or environment files.
ts/, python/, docs/
Paths identify where the relevant implementation or generated files live. Paths beginning with ~ are inside your home folder.
Composio account/API key plus user-scoped connected-service authorization
Prefer temporary, least-privileged credentials. Never commit .env, tokens, cookies, private keys, or session exports.
Composio and each connected toolkit provider
Check pricing, data retention, rate limits, and account permissions before enabling optional integrations.
git diff before committing.127.0.0.1 unless you intentionally secure and expose them.The manual reflects first-party files checked on August 18, 2026. It explains the indexed repository rather than promising that every optional third-party integration is available or safe.