Systems Lab

Agent skill

mcp-media-inbox-triage

Find media, partnership, and high-intent requests buried in a shared Gmail inbox, summarize the useful ones, and route them to the right owner through Zapier MCP.

slowingReaches the webInstructions only1,009 words

Filed under Outbound email.

From zapier/gtm-cheat-codes · 17 skills · 329 · pushed 2026-07-13

What it does when it runs

Find media, partnership, and high-intent requests buried in a shared Gmail inbox, summarize the useful ones, and route them to the right owner through Zapier MCP.

Read from the skill and the 5 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
None found.
Hosts it reaches
  • noplex.ai
  • www.zapier.com
Tool permissions it declares
No allowed-tools in the frontmatter. It only issues instructions, so there is nothing to bound.
Actions present in the files
None. Instructions only.

Ask about mcp-media-inbox-triage

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/zapier/gtm-cheat-codes.git /tmp/gtm-cheat-codes
git -C /tmp/gtm-cheat-codes sparse-checkout set "skills/marketing/mcp-media-inbox-triage"
mkdir -p ~/.claude/skills/mcp-media-inbox-triage
cp -R "/tmp/gtm-cheat-codes/skills/marketing/mcp-media-inbox-triage/." ~/.claude/skills/mcp-media-inbox-triage/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

Or take the whole library

This repo ships a .claude-plugin manifest, so Claude Code can install all 17 skills at once. Plugin skills are invoked as /<plugin>:<skill>, so they never collide with your own.

/plugin marketplace add zapier/gtm-cheat-codes
/plugin

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Reproduced in full from zapier/gtm-cheat-codes/blob/022a2884f40316ef22269e29fd61b8a0f0c4cb4a/skills/marketing/mcp-media-inbox-triage/SKILL.md, which is licensed MIT (repository). 1,009 words, 16 headings.

MCP Media Inbox Triage

Use this skill when a marketing, PR, community, or partnerships team needs a lightweight triage layer for a shared Gmail inbox.

What This Skill Does

  1. Searches a configured Gmail inbox or label in a bounded window.
  2. Reads only the message context needed for classification.
  3. Classifies each message as media request, partnership inquiry, customer/community lead, urgent executive risk, vendor pitch, spam/no action, or unclear.
  4. Scores urgency and recommends the right owner.
  5. Routes relevant requests to Slack, Google Sheets, or a triage doc.
  6. Drafts suggested replies only for human review.

When You Need This Pattern

  • A shared inbox mixes press requests, creator pitches, partnership notes, customer signals, newsletters, and vendor spam.
  • One person spends time each week skimming every email just to find the real asks.
  • The team needs human review before any reply is sent.
  • The team already works in Gmail, Slack, and Google Sheets.
  • You want a practical Zapier MCP workflow that saves attention, not just time.

Architecture

Shared Gmail inbox
  -> Zapier MCP Gmail search and read
  -> AI classification
  -> Slack summary, Google Sheets triage log, or Gmail draft

Required Connections Through Zapier MCP

  • Gmail: search and read messages from the shared inbox.
  • Slack: post triage summaries or urgent alerts.
  • Google Sheets: append a persistent triage log.
  • LLM: classify and summarize.

Optional:

  • Google Docs: create a weekly media-request digest.
  • Google Calendar: check deadline windows or schedule follow-ups.
  • CRM or advocacy database: match senders to known customers, partners, or advocates.

Core Workflow

1. Define The Inbox Window

Start with a bounded search:

to:{SHARED_INBOX} newer_than:7d -label:triaged

Adjust the inbox address, label, and time window for your team.

2. Pull Minimal Email Context

For each candidate message, read only:

FieldWhy
Sender name and emailIdentify source and possible owner
SubjectFast classification signal
Date receivedUrgency and SLA
Plain-text bodyExtract the ask
Thread countSpot follow-ups and repeated requests
Gmail thread linkSource of truth

Do not dump full email bodies into Slack.

3. Classify The Request

CategorySignalDefault action
Media requestJournalist, publication, interview, quote, deadlineRoute to PR or comms
Partnership inquiryCo-marketing, integration, affiliate, event, sponsorshipRoute to partnerships or marketing
Customer/community leadCustomer story, testimonial, community invite, user feedbackRoute to advocacy or community
Urgent executive riskLegal threat, brand risk, sensitive complaint, public escalationAlert owner immediately
Vendor pitchAgency, list purchase, ad buy, unrelated service offerLog or ignore
Spam/no actionGeneric blast, irrelevant outreach, phishing indicatorsArchive or leave unassigned
UnclearNot enough context to decideSend to human review

4. Score Urgency

UrgencySignalsResponse target
HighDeadline within 48 hours, named journalist, public brand risk, customer escalationSame day
MediumSpecific ask, relevant sender, no immediate deadlineTwo business days
LowUseful but exploratory, vague timing, non-criticalWeekly batch
IgnoreSpam, irrelevant vendor pitch, duplicateNo response

5. Output The Summary

Media inbox triage: 14 messages scanned, 4 need action

High urgency
- Jane Lee, TechWeekly: asks for comment on AI workflow story by Friday.
  Owner: PR
  Suggested action: reply with availability and approved spokesperson.
  Source: Gmail thread link

Ignored
- 8 vendor pitches
- 2 unrelated newsletters

Google Sheets Log

ColumnPurpose
received_atMessage timestamp
sender_nameHuman-readable sender
sender_email_domainDomain only if privacy matters
subjectEmail subject
categoryClassification
urgencyHigh / Medium / Low / Ignore
summaryOne-sentence ask
suggested_ownerTeam or person
suggested_next_actionConcrete next step
gmail_thread_linkSource link
statusNew / Routed / Done / Ignored

Classification Prompt

You are triaging a shared media inbox.

Classify this email for a human team. Do not draft a reply unless the email needs action.

Return JSON:
{
  "category": "media_request|partnership_inquiry|customer_community_lead|urgent_executive_risk|vendor_pitch|spam_no_action|unclear",
  "urgency": "high|medium|low|ignore",
  "sender_name": "string or unknown",
  "sender_org": "string or unknown",
  "deadline": "string or null",
  "summary": "One sentence describing the actual ask",
  "why_it_matters": "One sentence explaining relevance",
  "suggested_owner": "PR|Community|Marketing|Partnerships|Support|Leadership|Human review|Ignore",
  "suggested_next_action": "Concrete next action",
  "draft_reply_needed": true,
  "confidence": "high|medium|low"
}

Rules:
- Do not expose private email content in team channels.
- If the message is vague, classify as unclear.
- If the message is a generic vendor pitch, classify as vendor_pitch or spam_no_action.
- If the message mentions legal risk, public complaint, a journalist deadline, or a customer escalation, mark high urgency.

Zapier MCP And SDK Role

  • Use Zapier MCP to search Gmail, read message context, post Slack summaries, append Google Sheets rows, and create Gmail drafts when approved.
  • Use Zapier SDK for recurring runs, owner routing, retry handling, status logging, follow-up reminders, and weekly reporting when the workflow becomes productionized.

Guardrails

  • Never auto-send replies.
  • Do not expose full private email threads in Slack.
  • Keep Gmail thread links as the source of truth.
  • Route uncertain messages to a human.
  • Treat generic vendor pitches as vendor_pitch or spam_no_action unless there is a specific relevant ask.
  • Keep ignored messages auditable during tuning.

Inspired By

Generalized from Matt Canning and NoPlex. The reference workflow uses Zapier MCP and Gmail to reduce media inbox review from about 4 hours per week to about 15 minutes.

Files bundled with it

These load only when the skill asks for them, so they cost nothing until it runs.

Other skills for the same job

Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.

Need help setting it up?

This page tells you what mcp-media-inbox-triage does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.