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`.
33 lines
858 B
Python
33 lines
858 B
Python
"""
|
|
Tool Router - Toolkits Example
|
|
|
|
This example demonstrates how to retrieve available toolkits
|
|
and their connection status in a Tool Router session.
|
|
"""
|
|
|
|
import os
|
|
|
|
from composio import Composio
|
|
|
|
composio = Composio()
|
|
|
|
# Create a tool router session
|
|
# When manage_connections is enabled, tools for managing connections are included
|
|
session = composio.create(
|
|
# The provisioned examples user (raises KeyError when unset)
|
|
user_id=os.environ["COMPOSIO_EXAMPLES_USER_ID"],
|
|
manage_connections=True,
|
|
# mcp=True surfaces session.mcp on the returned type
|
|
mcp=True,
|
|
)
|
|
|
|
print(f"Session created: {session.session_id}")
|
|
print(f"MCP Server: {session.mcp.url}")
|
|
|
|
# Get available toolkits for the session
|
|
# This returns information about all toolkits available to the user
|
|
toolkits = session.toolkits()
|
|
|
|
print("\nAvailable toolkits:")
|
|
print(toolkits)
|