list_contexts
List available context checkpoints.
Shows all saved contexts available for multi-agent workflows.
Args:
limit: Maximum number of contexts to return (default 20, max 100)
offset: Number of contexts to skip for pagination (default 0)
name_pattern: Filter contexts by name (case-insensitive substring match)
include_descriptions: Include full descriptions in output (default False for compact listing)
ctx: MCP context (automatically provided)
Returns:
Dict with list of available contexts and their details
Examples:
>>> await list_contexts()
{'success': True, 'total': 3, 'contexts': [...]}
>>> await list_contexts(limit=5, name_pattern='investigation')
{'success': True, 'total': 2, 'contexts': [...]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| name_pattern | No | ||
| include_descriptions | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |