MCP Apps Kit - v0.5.0
    Preparing search index...

    Interface ServerConfig

    Server configuration that can be injected into UI resources.

    These values become available in UIs via getMcpServerConfig() from @mcp-apps-kit/ui.

    interface ServerConfig {
        baseUrl?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Additional custom configuration.

      Any extra values your UI needs at runtime.

    Index

    Properties

    Properties

    baseUrl?: string

    Base URL of the MCP server.

    Used by UIs to make API calls (e.g., debug logging via HTTP). Should include protocol and port (e.g., "http://localhost:3000").

    "http://localhost:3000"
    
    "https://api.myapp.com"