composio-langgraph
Adapts Composio tools to LangChain's StructuredTool format for use in LangGraph agents and graph workflows, giving them access to 1000+ apps through a single Composio session.
Installation
pip install composio composio-langgraph langgraph langchain langchain-openai
Set COMPOSIO_API_KEY (get one from dashboard.composio.dev/settings) and OPENAI_API_KEY in your environment:
export COMPOSIO_API_KEY=xxxxxxxxx
export OPENAI_API_KEY=xxxxxxxxx
Quickstart
Create a session for your user, fetch its tools, and hand them to your agent. The wrapped tools also work anywhere LangGraph accepts LangChain tools, such as a ToolNode in a custom graph.
from composio import Composio
from composio_langgraph import LanggraphProvider
from langchain.agents import create_agent
from langchain_openai import ChatOpenAI
composio = Composio(provider=LanggraphProvider())
llm = ChatOpenAI(model="gpt-5.2")
# Each session is scoped to one of your users
session = composio.create(user_id="user_123")
tools = session.tools()
agent = create_agent(tools=tools, model=llm)
result = agent.invoke(
{
"messages": [
(
"user",
"Send an email to john@example.com with the subject 'Hello' and body 'Hello from Composio!'",
)
]
}
)
print(result["messages"][-1].content)
Error handling
Each wrapped tool builds its args_schema from the Composio tool's input schema. When argument validation fails, the tool does not raise; it returns a structured result:
{"successful": False, "error": "<validation message>", "data": None}
Check successful in tool output instead of wrapping calls in try/except.
Links
- LangChain provider docs (covers LangGraph)
- Composio documentation
Release files for composio-langgraph 0.22.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| composio_langgraph-0.22.0.tar.gz | 3.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| composio_langgraph-0.22.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 8.0 kB
Release files / composio_langgraph-0.22.0.tar.gz
| Download URL | composio_langgraph-0.22.0.tar.gz |
|---|---|
| Size | 3.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
15b05bae55d9fe869a1b3d4e8c1e8ef2b31bf3d0a723b66c2fe0561d012e1fe8
|
|
BLAKE2b-256 checksum How to use checksums |
60f1ba8c4678d05cd22be30b4527ef859e9c64459025edf4e85647abc780bf16
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / composio_langgraph-0.22.0-py3-none-any.whl
| Download URL | composio_langgraph-0.22.0-py3-none-any.whl |
|---|---|
| Size | 4.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b9a1363b04614f4e680d9246e61ead3c82bbb81f1c769b297a60f527556e21fd
|
|
BLAKE2b-256 checksum How to use checksums |
afc155a5124ad03384c9bf927ac503bf37bd846bb413852a36ea9b48d35461bf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|