Agent Catalog (Platform MCP)

Browses the account-wide catalog of available trigger types and skills for monday platform agents using the Platform MCP.

Use this read-only tool to browse the account-wide catalog of available trigger types and skills for monday platform agents. No agent_id is required. Call it to discover what's available before wiring anything to a specific agent.

🚧

This tool runs against the monday.com dev (preview) API schema. Only triggers that can be added programmatically appear here. OAuth / third-party triggers (Slack, Gmail, Salesforce, etc.) require user setup in the monday.com UI and will not appear.

ActionDescription
list_triggersReturns available trigger types. Each entry has block_reference_id (required for manage_agent_triggers action: "add"), name, description, field_schemas (describes the field_values shape), and required_fields.
list_skillsReturns available skills with id, name, and description. Use the id with manage_agent_skills action: "add" — never guess a skill ID.

Parameters

ParameterTypeRequiredDescription
actionenumYeslist_triggers or list_skills.
block_reference_idsarrayNoUsed with list_triggers. Fetch specific trigger types by block_reference_id. Omit to return all trigger types.

Examples

List all available trigger types:

{
  "action": "list_triggers"
}

List all available skills:

{
  "action": "list_skills"
}

Related tools

  • manage_agent_triggers — use a block_reference_id from list_triggers to attach a trigger to an agent.
  • manage_agent_skills — use a skill id from list_skills, or author a new skill, then attach it to an agent.
  • manage_agent — manage the agent entity itself.

Programmatic equivalent

This tool maps to the agent_triggers_catalog and agent_skills_catalog queries on the monday.com dev (preview) API schema. There is no stable public GraphQL equivalent yet.