@runloop/api-client - v1.31.0
    Preparing search index...

    Interface McpConfigUpdateParameters

    Parameters for updating an existing McpConfig. All fields are optional - only specified fields will be updated.

    interface McpConfigUpdateParameters {
        allowed_tools?: string[] | null;
        auth_mechanism?: AuthMechanism | null;
        custom_headers?: CustomHeader[] | null;
        description?: string | null;
        endpoint?: string | null;
        name?: string | null;
    }
    Index

    Properties

    allowed_tools?: string[] | null

    New glob patterns specifying which tools are allowed. Examples: [''] for all tools, ['github.search_'] for specific patterns.

    auth_mechanism?: AuthMechanism | null

    Defines how the primary credential is applied to requests proxied to the upstream.

    custom_headers?: CustomHeader[] | null

    New list of additional headers. Replaces the existing list entirely; use an empty list to clear all custom headers. At most 8 entries.

    description?: string | null

    New description for this MCP configuration.

    endpoint?: string | null

    New target MCP server endpoint URL.

    name?: string | null

    New name for the McpConfig. Must be unique within your account.