MCP Tool List

Updated: September 9, 2026
Contents

    Every tool below is called the same way, through the single MCP endpoint described in Quickstart: your agent sends a tools/call request naming the tool and its arguments, and gets back a structured result. This page is the reference for what’s actually available to call, module by module.

    How to read this page

    Connect’s MCP tools follow one consistent shape across modules, so once you’ve used one, the rest read the same way:

    Tool kindWhat it doesNaming pattern
    ListFinds resources matching a filter; returns lightweight rows (typically just ID and name) for discovery, paginated by default.list_<thing>
    GetRetrieves the full detail of one resource, once you have its ID from a list call or from the user.get_<thing>
    Manage / create / updateCreates or updates a resource in one call — omit the ID to create, pass it to update.manage_<thing> or create_<thing> / update_<thing>
    ActionTriggers a state change on an existing resource (close a case, activate a price version).<verb>_<thing>

    Every tool is also annotated as read-only, write, or destructive. Compliant MCP clients use this to decide when to ask you to confirm before a call goes through.

    Helpdesk

    Case management

    ToolDescriptionType
    helpdesk_list_casesList cases, filterable by description, priority, state, and type; paginated.Read-only
    helpdesk_create_caseCreate a case with subject, description, priority, type, receiver account, and an optional product.Write
    helpdesk_get_caseRetrieve full detail for a single case by ID.Read-only
    helpdesk_update_caseUpdate a case’s subject, description, priority, type, or product.Write

    Case state transitions

    ToolDescriptionType
    helpdesk_close_caseClose a case, optionally with a satisfaction rating (1–5).Write
    helpdesk_inquire_caseSend an inquiry requesting more information from the requester.Write
    helpdesk_pend_caseMove a case to pending status.Write
    helpdesk_resolve_caseMark a case as resolved.Write

    Attachments

    ToolDescriptionType
    helpdesk_list_attachmentsList all attachments on a case.Read-only
    helpdesk_delete_attachmentRemove an attachment from a case.Destructive

    Note: creating or retrieving attachment content isn’t exposed as a tool — that’s deliberate. Attachments are files, and MCP tools are built for structured data; your agent’s own native file handling is the right path for uploading or reading a file, not a Helpdesk tool call.

    Products

    Products

    ToolDescriptionType
    list_productsFind products by name, status, owner, purchase model, or external ID; paginated, returns ID and name only.Read-only
    get_productFull detail for one product — description, configuration, visibility, media, and version info.Read-only
    manage_productCreate a product (omit product_id) or update one (include it).Write
    publish_product_versionPublish a product version as public, private, or staging.Write

    Items — the billable units within a product

    ToolDescriptionType
    list_product_itemsList the items belonging to a product; paginated.Read-only
    get_product_itemFull detail for one item — unit, period, commitment, grouping.Read-only
    manage_product_itemCreate or update an item (Reservation or PPU type, unit, billing period, commitment).Write

    Parameters — the custom fields captured during ordering, configuration, or fulfillment

    ToolDescriptionType
    list_product_parametersFind parameters by scope, phase, or type.Read-only
    get_product_parameterFull detail for one parameter, including constraints and dependencies.Read-only
    manage_product_parameterCreate or update a parameter. No delete.Write

    Templates — the notifications and documents generated during fulfillment

    ToolDescriptionType
    list_product_templatesFind templates by scope or type.Read-only
    get_product_templateFull detail for one template, including body content.Read-only
    manage_product_templatesCreate or update a template.Write

    Pricing

    Price lists

    ToolDescriptionType
    list_price_listsFind price lists by filter.Read-only
    get_price_listFull detail for one price list.Read-only
    create_price_listCreate a new price list (name, currency, precision, products).Write
    update_price_listUpdate a price list’s metadata.Write
    terminate_price_listTerminate a price list.Destructive

    Versions

    ToolDescriptionType
    list_price_list_versionsFind versions of a price list.Read-only
    get_price_list_versionFull detail for one version.Read-only
    create_price_list_versionCreate a new version from a base version.Write
    update_price_list_versionUpdate a version’s metadata.Write
    activate_versionActivate a version immediately.Write
    schedule_versionSchedule a version to activate at a future time.Write
    cancel_versionCancel a scheduled version.Write

    Price points

    ToolDescriptionType
    query_price_pointsAdvanced filtered query over the price points in a version.Read-only
    get_price_pointFull detail for one price point.Read-only
    update_price_pointUpdate an individual price point’s value.Write

    Note: bulk price adjustments via spreadsheet upload aren’t exposed through MCP — that endpoint requires a file upload, which doesn’t fit the tool-call model. Update price points individually instead, or use the Connect UI/API for bulk adjustments.

    Assets & Subscriptions

    ToolDescriptionType
    list_subscriptionsFilter subscriptions by status, product, marketplace, contract, or customer; paginated.Read-only
    get_subscriptionFull detail for one subscription.Read-only
    get_subscription_parametersThe configuration parameters set on a subscription, optionally filtered by scope or phase.Read-only
    get_subscription_itemsThe line items and quantities on a subscription.Read-only
    Is this page helpful?
    Translate with Google
    Copied to clipboard