Heroku LangChain.js - v1.0.1
    Preparing search index...

    Interface HerokuAgentToolDefinition

    Defines the structure for tools used by HerokuAgent.

    interface HerokuAgentToolDefinition {
        type: "heroku_tool" | "mcp";
        name: string;
        description?: string;
        runtime_params?: {
            target_app_name: string;
            dyno_size?: string;
            ttl_seconds?: number;
            max_calls?: number;
            tool_params?: Record<string, any>;
        };
        [key: string]: unknown;
    }

    Hierarchy

    • ServerTool
      • HerokuAgentToolDefinition

    Indexable

    • [key: string]: unknown
    Index

    Properties

    type: "heroku_tool" | "mcp"
    name: string
    description?: string
    runtime_params?: {
        target_app_name: string;
        dyno_size?: string;
        ttl_seconds?: number;
        max_calls?: number;
        tool_params?: Record<string, any>;
    }