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

    Type Alias AgentCapabilities

    Capabilities supported by the agent.

    Advertised during initialization to inform the client about available features and content types.

    See protocol docs: Agent Capabilities

    type AgentCapabilities = {
        _meta?: { [key: string]: unknown } | null;
        auth?: AgentAuthCapabilities;
        loadSession?: boolean;
        mcpCapabilities?: McpCapabilities;
        nes?: NesCapabilities | null;
        positionEncoding?: PositionEncodingKind | null;
        promptCapabilities?: PromptCapabilities;
        sessionCapabilities?: SessionCapabilities;
    }
    Index

    Properties

    _meta?: { [key: string]: unknown } | null

    The _meta property is reserved by ACP to allow clients and agents to attach additional metadata to their interactions. Implementations MUST NOT make assumptions about values at these keys.

    See protocol docs: Extensibility

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    Authentication-related capabilities supported by the agent.

    loadSession?: boolean

    Whether the agent supports session/load.

    mcpCapabilities?: McpCapabilities

    MCP capabilities supported by the agent.

    nes?: NesCapabilities | null

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    NES (Next Edit Suggestions) capabilities supported by the agent.

    positionEncoding?: PositionEncodingKind | null

    UNSTABLE

    This capability is not part of the spec yet, and may be removed or changed at any point.

    The position encoding selected by the agent from the client's supported encodings.

    promptCapabilities?: PromptCapabilities

    Prompt capabilities supported by the agent.

    sessionCapabilities?: SessionCapabilities