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

    Interface McpConfigCreateParameters

    Parameters required to create a new McpConfig.

    interface McpConfigCreateParameters {
        allowed_tools: string[];
        endpoint: string;
        name: string;
        description?: string | null;
    }
    Index

    Properties

    allowed_tools: string[]

    Glob patterns specifying which tools are allowed from this MCP server. Examples: [''] for all tools, ['github.search_', 'github.get_*'] for specific patterns.

    endpoint: string

    The target MCP server endpoint URL (e.g., 'https://mcp.example.com').

    name: string

    The human-readable name for the McpConfig. Must be unique within your account. The first segment before '-' is used as the service name for tool routing (e.g., 'github-readonly' uses 'github' as the service name).

    description?: string | null

    Optional description for this MCP configuration.