mirror of
https://github.com/ComposioHQ/composio.git
synced 2026-09-22 11:46:35 +08:00
8086ef02cb
## Summary - Repairs runnable TypeScript and Python examples for current backend requirements, including authenticated MCP endpoints, current transports, valid tool identifiers, provider limits, and resource uniqueness. - Replaces placeholder resource IDs with explicit `COMPOSIO_EXAMPLES_*` configuration and makes failed examples exit loudly. - Adds `scripts/examples-provision.mjs` as an idempotent provisioning check for a disposable examples project. ## Scope - This PR no longer changes the Python SDK runtime or generated-client dependency. - Python remains pinned to the published `composio-client==1.43.0` in `pyproject.toml`, `setup.py`, and `uv.lock`. - The owned 2.x client integration is deferred until that client completes its release guarantees and is explicitly published. - The scheduled live workflow and manifest remain deferred until their runner is tracked. ## Verification - `make chk` - `make tst` (`927 passed, 33 skipped`) - Hosted checks rerun against commit `12691aca7`.
39 lines
1002 B
Python
39 lines
1002 B
Python
import os
|
|
|
|
from agents import Agent, HostedMCPTool, Runner
|
|
|
|
from composio import Composio
|
|
|
|
composio = Composio()
|
|
session = composio.create(
|
|
# A user with a connected Gmail account (raises KeyError when unset)
|
|
user_id=os.environ["COMPOSIO_EXAMPLES_USER_ID"],
|
|
# mcp=True surfaces session.mcp on the returned type
|
|
mcp=True,
|
|
)
|
|
|
|
print(session.mcp)
|
|
|
|
composio_mcp = HostedMCPTool(
|
|
tool_config={
|
|
"type": "mcp",
|
|
"server_label": "tool_router",
|
|
"server_url": session.mcp.url,
|
|
"require_approval": "never",
|
|
"headers": session.mcp.headers, # type: ignore[typeddict-item] # headers is typed Dict[str, Optional[str]]; the SDK always populates it with str values
|
|
}
|
|
)
|
|
|
|
agent = Agent(
|
|
name="My Agent",
|
|
instructions="You are a helpful assistant that can use the tools provided to you.",
|
|
tools=[composio_mcp],
|
|
)
|
|
|
|
result = Runner.run_sync(
|
|
starting_agent=agent,
|
|
input="Find my last email and summarize it.",
|
|
)
|
|
|
|
print(result.final_output)
|