Agent Client Protocol - v0.5.1
    Preparing search index...

    Interface LoadSessionRequest

    Loads an existing session to resume a previous conversation.

    This method is only available if the agent advertises the loadSession capability.

    The agent should:

    • Restore the session context and conversation history
    • Connect to the specified MCP servers
    • Stream the entire conversation history back to the client via notifications

    See protocol docs: Loading Sessions

    interface LoadSessionRequest {
        _meta?: { [k: string]: unknown };
        cwd: string;
        mcpServers: McpServer[];
        sessionId: string;
    }
    Index

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    cwd: string

    The working directory for this session.

    mcpServers: McpServer[]

    List of MCP servers to connect to for this session.

    sessionId: string

    The ID of the session to load.