Member Junction
    Preparing search index...

    Generic driver class for all auto-generated MCP Tool Actions.

    When an MCP Server Tool is synced to an Action (via syncActionsForServer), the Action's DriverClass is set to 'MCPToolAction'. This class handles execution of all such actions by:

    1. Looking up the MCPServerTool entity that has GeneratedActionID = Action.ID
    2. Finding an active connection for the tool's server
    3. Mapping ActionParams to tool arguments (using param Name as key)
    4. Calling the MCP tool and returning the result
    // An Action with DriverClass='MCPToolAction' will be handled by this class
    // The tool is identified by looking up MCPServerTool.GeneratedActionID = Action.ID

    await runAction({
    ActionName: 'search_documentation', // Name matches ToolName from MCP Server
    Params: [
    { Name: 'query', Value: 'MemberJunction API' },
    { Name: 'maxResults', Value: 10 }
    ]
    });

    **Optional Parameter:**
    - `ConnectionID` (optional): Specific connection to use. If not provided,
    an active connection for the server will be automatically selected.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods