@typia/website
    Preparing search index...

    Interface IApplicationProps

    Properties for the LLM function calling application composer.

    interface IApplicationProps {
        config?: Partial<IMcpLlmApplication.IConfig>;
        tools: IMcpTool[];
    }
    Index

    Properties

    Properties

    config?: Partial<IMcpLlmApplication.IConfig>

    Configuration for the LLM function calling schema conversion.

    tools: IMcpTool[]

    List of tools.

    A list of tools defined in the MCP (Model Context Protocol) document.

    It is better to validate the tools using the typia.assert<T>() function for type safety.