SyncGTM now works inside Claude and ChatGPT. Learn more
All GTM agents

Verify Email

/verify-email

Checks any email address against a waterfall of verification providers and returns a valid and deliverable verdict for 0.3 credits.

Download Skillverify-email.zip · free

Overview

verify-email wraps the SyncGTM MCP verify_email tool, which takes one email address and returns whether it is valid and whether it is deliverable. It runs waterfall verification across several providers in sequence and stops at the first verdict, so you are charged once per address rather than once per provider tried. The skill drives it over a whole list: it deduplicates the column, prices the run, then splits the output into a clean list you can import and a risky list you hold.

What it does

  1. 1

    Takes one input — the `email` parameter, one full address per call. No name, no company, no LinkedIn URL, and no array input.

  2. 2

    Runs waterfall verification across multiple providers in sequence and stops at the first one that returns a verdict.

  3. 3

    Returns three fields per address: `email`, `valid`, and `deliverable`. Nothing else comes back.

  4. 4

    Costs 0.3 credits per address, charged once per call and not once per provider the waterfall walks through.

  5. 5

    Does not find addresses. Use `find_work_email` (1 credit) or `find_personal_email` (3 credits) when the row has no address yet.

  6. 6

    Returns no name, title, company or phone — use `enrich_person` (1 credit) for that. The verdict is a point-in-time signal, not a delivery guarantee, so re-verify a list that has sat for months.

How to use it

  1. 1

    Download the skill file — it saves as verify-email.zip.

  2. 2

    In Claude, open Settings → Capabilities → Skills and upload the .zip (or unzip the verify-email/ folder into .claude/skills/ for Claude Code).

  3. 3

    Connect the SyncGTM MCP server at docs.syncgtm.com/mcp_server/setup — browser sign-in, no API key.

  4. 4

    Type /verify-email and paste your addresses or point at the CSV column that holds them. Ask for a split into clean and risky, not a written report.

  5. 5

    The tool has no options to tune — it takes one address per call, so the only dial is how many calls you authorize. At 0.3 credits an address, 1,000 addresses is 300 credits, so set the cap up front and run `check_credits` (free) first.

Use cases

Pre-send list hygiene

Verify every address in a sequencer import the morning it launches. Splitting deliverable from risky keeps bounce rate below the threshold that gets a sending domain throttled.

Post-enrichment QA

After `find_work_email` fills the email column on a fresh list, verify each address so only deliverable rows reach the sequencer. `find_work_email` returns an address without checking it.

Stale CRM cleanup

Re-verify contacts collected six or more months ago and flag the ones that broke. Then run `check_job_change` on the LinkedIn URLs behind the failures to see which of them moved employers.

Scraped inbox triage

Check addresses pulled off company sites with `scrape_emails_from_website` before treating any of them as a reachable contact. Most of what that tool returns is a generic inbox.

GTM workflow examples

Monday list build to sequencer-ready CSV

  1. 1Run `find_people` with your ICP filters and an explicit `limit` of 100 results (0.3 credits per result, 30 credits) to pull names, titles, companies and LinkedIn URLs.
  2. 2Run `find_work_email` on those 100 LinkedIn URLs, passing each as `linkedin_url` (1 credit each, 100 credits), to fill the email column.
  3. 3Run `verify_email` on every address returned (0.3 credits each, 30 credits), deduplicating and lowercasing the column first so no address is charged twice.
  4. 4Split the output into a deliverable file and a not-deliverable file, then run `scrape_emails_from_website` (0.5 credits per domain) on the domains behind the failures — it crawls from the site root and mostly returns generic inboxes like info@ and sales@.

Outcome: One import-ready CSV of verified contacts plus a separate hold file of failures, produced in a single session for about 160 credits before the scrape fallback.

Quarterly CRM re-verification

  1. 1Pull the CRM contacts not emailed in 90 days into a table with email and LinkedIn URL columns, capped at 500 rows. The LinkedIn column is what makes the diagnosis step possible.
  2. 2Run `verify_email` on each address — 500 rows is 150 credits — to get a current valid and deliverable verdict per row.
  3. 3Run `check_job_change` on the LinkedIn URLs of the first 20 not-deliverable rows, passing each as `profile_url` (2 credits each, 40 credits). It does not accept an email address.
  4. 4Run `find_work_email` on the `linkedin_url` of the movers (1 credit each) to get their address at the new company, then verify those too.
  5. 5Write verified addresses back to the CRM, replace the movers' addresses, and mark the remainder do-not-send.

Outcome: A refreshed CRM contact table where every sendable row carries a dated deliverability verdict and every job-changer carries a new work email.

Warm list from a competitor's launch post

  1. 1Run `linkedin_post_commenters` (0.3 credits per call) on the competitor's launch post to pull everyone who commented, with their profile URLs.
  2. 2Filter to the 25 commenters matching your ICP, then run `find_work_email` on those 25 profile URLs (1 credit each, 25 credits).
  3. 3Run `verify_email` on the addresses that came back (0.3 credits each, at most 7.5 credits) and drop anything not deliverable.
  4. 4Build the send list with each person's own comment quoted as the opening line.

Outcome: A warm outbound list of up to 25 rows where every address is verified and every row carries a first line taken from that person's public comment.

Prompts

Paste any of these into Claude once the skill is installed and the SyncGTM MCP is connected.

Verify jane@stripe.com and tell me whether it is valid and deliverable.
Verify these 50 addresses — cap the run at 50 calls, 15 credits — and return two lists: deliverable and not deliverable.
Run check_credits first, then verify every address in the work_email column of this CSV. Stop at 200 addresses (60 credits) and add valid and deliverable columns to the same rows.
Find work emails for these 25 LinkedIn URLs with find_work_email (25 credits), then verify each one with verify_email (7.5 credits) and drop anything not deliverable. Limit: 25 profiles.
Re-verify the 100 contacts in this CSV that we collected in January (30 credits). For the first 20 that come back not deliverable, run check_job_change on their LinkedIn URL from the linkedin_url column (40 credits) and tell me who moved companies.

Best practices

  • Verify right before the send, not when you build the list. A verdict reflects what the providers could see at the moment of the call, and people change jobs.

  • Ask for a split, not a report. A clean list and a risky list are directly importable; a paragraph of commentary is not.

  • Never verify an address you constructed. A pass on a guessed first.last@company.com tells you the pattern resolves, not that the person is behind it.

  • Deduplicate and lowercase the column before the run. The same address in three exports is three charges for one verdict.

  • Finding and verifying are two tools with two costs. `find_work_email` (1 credit) returns an address without checking that it is deliverable — ask for both explicitly.

  • The tool takes `email` only and never says why an address failed. Diagnose failures with `check_job_change` (2 credits), which needs the LinkedIn `profile_url`, not the email.

Complementary skills

Explore more

Ready to run /verify-email on your own data?