Pubrio ACTION
Update Monitor
Update an existing signal monitor. See the documentation
- Action
- Writes data
- API key
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Pubrio account once, then configure and run Update Monitor 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: "pubrio-update-monitor",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
pubrio: { authProvisionId: "apn_xxxxxxx" },
monitorId: "Monitor ID",
name: "Name",
},
})
console.log(result)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "pubrio-update-monitor",
"configured_props": {
"pubrio": { "authProvisionId": "apn_xxxxxxx" },
"monitorId": "Monitor ID",
"name": "Name"
}
}'// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "pubrio",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
name: "pubrio-update-monitor",
arguments: {
monitorId: "Monitor ID",
name: "Name",
},
})SCHEMA
Inputs
Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.
| Property | Type | Description |
|---|---|---|
monitorId Monitor ID | string | The monitor ID to update Required |
name Name | string | Updated name for the monitor Optional |
detectionMode Detection Mode | string | How the monitor detects changes: company_first monitors specific companies for signals, signal_first monitors signals and matches to companies Optional |
signalTypes Signal Types | string[] | Types of signals to monitor Optional |
destinationType Destination Type | string | How to deliver monitor results Optional |
webhookUrl Webhook URL | string | Webhook URL for delivery Optional |
email Email | string | Email address for delivery Optional |
sequenceIdentifier Sequence Identifier | string | Outreach sequence identifier Optional |
description Description | string | Description for the monitor Optional |
frequencyMinute Frequency (Minutes) | integer | How often to check for new signals in minutes Optional |
maxDailyTrigger Max Daily Triggers | integer | Maximum number of triggers per day Optional |
maxRecordsPerTrigger Max Records Per Trigger | integer | Maximum records per trigger Optional |
companies Companies | string[] | Company names to monitor Optional |
domains Domains | string[] | Domains to monitor Optional |
linkedinUrls LinkedIn URLs | string[] | LinkedIn URLs to monitor Optional |
companyFilters Company Filters | string | JSON object of company filters Optional |
signalFilters Signal Filters | string | JSON array of signal filter objects Optional |
peopleEnrichmentConfigs People Enrichment Configs | string | JSON array of people enrichment configuration objects Optional |
isCompanyEnrichment Enable Company Enrichment | boolean | Whether to enrich company data Optional |
isPeopleEnrichment Enable People Enrichment | boolean | Whether to enrich people data Optional |
isActive Is Active | boolean | Whether the monitor is active Optional |
isPaused Is Paused | boolean | Whether the monitor is paused Optional |
maxFailureTrigger Max Failure Triggers | integer | Maximum number of failure triggers (1-10) Optional |
maxRetryPerTrigger Max Retry Per Trigger | integer | Maximum retries per trigger (0-3) Optional |
retryDelaySecond Retry Delay (Seconds) | integer | Delay between retries in seconds (1-5) Optional |
notificationEmail Notification Email | string | Email address for failure notifications 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
- pubrio-update-monitor
- Version
- 0.0.1
- App
- Pubrio
- Authentication
- API key
- Read-only
- No
- Destructive
- No
- Open world
- Yes
- Source
- View on GitHub ↗