View as Markdown
Mautic icon

Mautic ACTION

Search Companies

Gets a list of companies by a search term. See docs
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Mautic account once, then configure and run Search Companies from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "mautic-search-companies",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    mautic: { authProvisionId: "apn_xxxxxxx" },
    search: "Search Query",
    orderBy: "Order By",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Search Companies inputs
Property Type Description
search Search Query string
String or search command to filter entities by
Required
orderBy Order By string
Column to sort by. Can use any column listed in the response in snake_case
Optional
orderByDir Order By Direction string
Sort direction: ascending or descending
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
mautic-search-companies
Version
0.3.1
App
Mautic
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes