Search the documentation
35 pages for durable.
Titles and paths first, then pages whose text carries it. Each row opens that page as this site last read it.
deploy-helm
Claude Developer Platform · in the page
agents-and-tools/mcp-tunnels/deploy-helm
…p-tunnels/console#add-a-ca-certificate). Keep `data/ca.key` somewhere durable and secure; you'll need it to sign a fresh server certificate at renewal time. </Step> <Step title="Create th…
advisor-tool
Claude Developer Platform · in the page
agents-and-tools/tool-use/advisor-tool
…believe the task is complete. BEFORE this call, make your deliverable durable: write the file, save the result, commit the change. The advisor call takes time; if the session ends during it, a durable…
mid-conversation-effort-example
Claude Developer Platform · in the page
build-with-claude/mid-conversation-effort-example
…reter, rather than accepting only a flat list of subtask strings. * **Durable journaling:** replace the local JSON file with a store that survives process restarts and is safe under concurrent writers…
compliance-integration-patterns
Claude Developer Platform · in the page
manage-claude/compliance-integration-patterns
…ou want to avoid re-reading pages you already drained, and you have a durable place to persist a cursor between runs | ### Window polling Set `created_at.lt` at least 1 minute in the past so that ev…
webhooks
Claude Developer Platform · in the page
managed-agents/webhooks
…er delivery and there's no signal that it was lost. Webhooks aren't a durable log, so if you need to observe every transition, reconcile by listing or fetching the resource through the API. * **Times…
Hosting the Agent SDK
Claude Code CLI · in the page
agent-sdk/hosting
…tolerate more. * **Persistent storage**: whether the provider offers durable volumes or only ephemeral disk. The hybrid pattern needs durable storage somewhere, whether in the sandbox or alongside it…
Persist sessions to external storage
Claude Code CLI · in the page
agent-sdk/session-storage
…**: the local copy is deleted at run end, so the store holds the only durable copy. If you don't want a fresh session to leave a transcript on local disk, set `CLAUDE_CONFIG_DIR` to a temp directory…
Configure auto mode
Claude Code CLI · in the page
auto-mode-config
…ge) removes the message that stated it. Use an ask or deny rule for a durable guarantee. | ## Where the classifier reads configuration The classifier reads the same [CLAUDE.md](/docs/en/memory) cont…
Champion kit
Claude Code CLI · in the page
champion-kit
…| | Team wiki or internal documentation | Durable patterns, custom skills, and `CLAUDE.md` examples | A short page, linked from the channel topic so it rem…
Claude apps gateway for Amazon Bedrock, Claude Platform on AWS, Google Cloud, and Microsoft Foundry
Claude Code CLI · in the page
claude-apps-gateway
…end limits](/docs/en/claude-apps-gateway-spend-limits), it also holds durable spend, audit, and identity tables that should be backed up. TLS via `?sslmode=require` is recommended.…
Run prompts on a schedule
Claude Code CLI · in the page
scheduled-tasks
…s) or [Desktop scheduled tasks](/docs/en/desktop-scheduled-tasks) for durable scheduling. ## Cron expression reference `CronCreate` accepts standard 5-field cron expressions: `minute hour day-of-mon…
How Claude Tag works
Claude Documentation · in the page
claude-tag/concepts/how-it-works
…th `/invite @Claude`. ### What survives between replies A thread is durable, but the sandbox behind it is not. Durable means the thread stays in Slack, and everything Claude read and said in it is k…
Good habits for working with Claude Tag
Claude Documentation · in the page
claude-tag/users/good-habits
…cript. For long-running work, make getting the deliverable somewhere durable part of the definition. Post the file to the thread, push the branch, or open the draft pull request as it goes. See [what…
Prompt library
Claude Documentation · in the page
claude-tag/users/prompt-library
…what you have, then keep going. ``` **Why it works**: the thread is durable but [the isolated workspace behind it isn't](/docs/claude-tag/concepts/how-it-works#what-survives-between-replies). Anythi…
Supersede older widget instances
Claude Documentation · in the page
connectors/building/mcp-apps/instance-supersession
…for a demo; a production server should derive the key from something durable, such as a database row ID or a version number on the underlying record. ```ts theme={null} import { registerAppTool } fr…
Agents Charter
Model Context Protocol · in the page
community/working-groups/agents
…as ordinary tools or through framework-specific integrations, leaving durable execution, capability discovery, delegation, and multi-turn interaction to ad hoc conventions. The WG stewards Tasks as MC…
Transports Charter
Model Context Protocol · in the page
community/working-groups/transports
…](/community/working-groups/agents)**: The Agents WG owns Tasks and durable execution; the groups coordinate where these depend on multi-round-trip requests, request association, stateless operati…
Architecture overview
Model Context Protocol · in the page
docs/2024-11-05/learn/architecture
…that augment how requests are executed: * **Tasks (Experimental)**: Durable execution wrappers that enable deferred result retrieval and status tracking for MCP requests (e.g., expensive computation…
Architecture overview
Model Context Protocol · in the page
docs/2025-03-26/learn/architecture
…that augment how requests are executed: * **Tasks (Experimental)**: Durable execution wrappers that enable deferred result retrieval and status tracking for MCP requests (e.g., expensive computation…
Architecture overview
Model Context Protocol · in the page
docs/2025-06-18/learn/architecture
…that augment how requests are executed: * **Tasks (Experimental)**: Durable execution wrappers that enable deferred result retrieval and status tracking for MCP requests (e.g., expensive computation…
Architecture overview
Model Context Protocol · in the page
docs/2025-11-25/learn/architecture
…that augment how requests are executed: * **Tasks (Experimental)**: Durable execution wrappers that enable deferred result retrieval and status tracking for MCP requests (e.g., expensive computation…
Architecture overview
Model Context Protocol · in the page
docs/2026-07-28/learn/architecture
…e [Tasks extension](/extensions/tasks/overview) lets servers return a durable handle for long-running requests, so clients can poll for status and retrieve the result later. #### Notifications The p…
CLI client
Model Context Protocol · in the page
docs/2026-07-28/tools/inspector/cli
…server` flags, as `<server>`. <Note> **The config file is the only durable way to give a run its [roots](/specification/draft/client/roots):** there is no roots flag, and `--method roots/set` a…
Architecture overview
Model Context Protocol · in the page
docs/draft/learn/architecture
…e [Tasks extension](/extensions/tasks/overview) lets servers return a durable handle for long-running requests, so clients can poll for status and retrieve the result later. #### Notifications The p…
CLI client
Model Context Protocol · in the page
docs/draft/tools/inspector/cli
…server` flags, as `<server>`. <Note> **The config file is the only durable way to give a run its [roots](/specification/draft/client/roots):** there is no roots flag, and `--method roots/set` a…
Extensions Overview
Model Context Protocol · in the page
extensions/overview
…tion for long-running operations, with polling, mid-flight input, and durable handles. | ### Skills over MCP <Card title="modelcontextprotocol/ext-skills" icon="github" href="https://github.com/mode…
Tasks
Model Context Protocol · in the page
extensions/tasks/overview
…ls — take seconds, minutes, or longer. MCP Tasks let servers return a durable handle instead of blocking, so clients can poll for progress, provide input when needed, and retrieve the final result aft…
SEP-1686: Tasks
Model Context Protocol · in the page
seps/1686-tasks
…of communication) to augment their requests with **tasks**. Tasks are durable state machines that carry information about the underlying execution state of the request they wrap, and are intended for…
SEP-2567: Sessionless MCP via Explicit State Handles
Model Context Protocol · in the page
seps/2567-sessionless-mcp
…is already the norm in widely-deployed remote MCP servers that manage durable resources: | Server (official, remote) | Create tool → returned ID | Operate to…
SEP-2640: Skills Extension
Model Context Protocol · in the page
seps/2640-skills-extension
…recoverable from the path; this is also what lets the host honor the durable-origin requirement in [Security Implications](#security-implications). ##### Resources `resources` is REQUIRED on every…
SEP-2663: Tasks Extension
Model Context Protocol · in the page
seps/2663-tasks-extension
…ion allows certain requests to be augmented with **tasks**. Tasks are durable state machines that carry information about the underlying execution state of the request they augment, and are intended f…
Tasks
Model Context Protocol · in the page
specification/2025-11-25/basic/utilities/tasks
…f communication — to augment their requests with **tasks**. Tasks are durable state machines that carry information about the underlying execution state of the request they wrap, and are intended for…
Key Changes
Model Context Protocol · in the page
specification/2025-11-25/changelog
…](/specification/2025-11-25/basic/utilities/tasks) to enable tracking durable requests with polling and deferred result retrieval ([SEP-1686](https://github.com/modelcontextprotocol/modelcontextprotoc…
Specification
Model Context Protocol · in the page
specification/2026-07-28/index
…ion of long-running operations, with polling, mid-flight input, and durable handles * **[Skills over MCP](/community/working-groups/skills-over-mcp)**: Rich, structured instructions for agent work…
Specification
Model Context Protocol · in the page
specification/draft/index
…ion of long-running operations, with polling, mid-flight input, and durable handles * **[Skills over MCP](/community/working-groups/skills-over-mcp)**: Rich, structured instructions for agent work…