From GTM Skills
Provides API reference, CLI workflows, MCP server setup, enrichment waterfalls, bulk processing, job change detection, and integration patterns for LeadMagic platform.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gtm-skills:leadmagic-toolkitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
LeadMagic is the engine that powers email finding, verification, and
LeadMagic is the engine that powers email finding, verification, and enrichment for thousands of GTM teams. This skill is the master toolkit: every endpoint, every integration pattern, every workflow, and every advanced tactic. The mistake: using the API one call at a time manually. The fix: automated workflows, waterfall enrichment, MCP tool orchestration, and integration into every tool in your stack.
Trigger phrases: "LeadMagic API", "LeadMagic setup", "LeadMagic integration", "LeadMagic CLI", "LeadMagic MCP", "LeadMagic enrichment", "LeadMagic bulk", "LeadMagic Clay", "LeadMagic n8n", "LeadMagic workflow"
Input: name + company → API: Email Finder → Email → API: Email Verifier → Confidence score
CLI: lm find "Jane Smith" "Acme Corp" | lm verify
Upload CSV → API: Bulk Enrich → Poll status → Download results → CRM import
CLI: lm bulk-enrich contacts.csv --output enriched.csv --webhook https://...
Input → LeadMagic → if not found → Apollo → if not found → ProspectingTool → Output
AI Agent → MCP Tool: find_email → MCP Tool: verify_email → MCP Tool: enrich_person
# Install
npm install -g leadmagic-cli
lm config set api_key YOUR_KEY
# Find email
lm find "Jane Smith" "Acme Corp"
lm find --domain acme.com --pattern "{first}.{last}@{domain}"
# Verify email
lm verify [email protected]
lm verify --bulk emails.txt
# Bulk enrich
lm bulk-enrich contacts.csv --output enriched.csv
# Job change check
lm job-change --contact-id abc123
# MCP server
lm mcp start --port 3000
{
"name": "LeadMagic Email Find + Enrich",
"nodes": [
{
"name": "Input",
"type": "n8n-nodes-base.webhook",
"position": [250, 300]
},
{
"name": "Find Email",
"type": "n8n-nodes-base.httpRequest",
"position": [450, 300],
"parameters": {
"url": "https://api.leadmagic.io/v1/email/find",
"method": "POST",
"headers": { "Authorization": "Bearer {{$credentials.apiKey}}" },
"body": { "name": "{{$json.name}}", "company": "{{$json.company}}" }
}
},
{
"name": "Verify Email",
"type": "n8n-nodes-base.httpRequest",
"position": [650, 300],
"parameters": {
"url": "https://api.leadmagic.io/v1/email/verify",
"method": "POST",
"body": { "email": "{{$json.email}}" }
}
},
{
"name": "Output",
"type": "n8n-nodes-base.respondToWebhook",
"position": [850, 300]
}
]
}
1. Add LeadMagic enrichment to Clay table
2. Map: Name column → LeadMagic Name, Company column → LeadMagic Company
3. Configure: waterfall order (LeadMagic first, then fallbacks)
4. Run: 1 credit per email found + verified
The agent delivers a LeadMagic integration blueprint matched to the user's stack and use case:
Before delivering, verify:
references/framework-notes.md — named frameworks, citation anchors, and operating assumptionstemplates/output-template.md — copy-paste deliverable structure for the userscripts/check-output.py — local checklist validator for required sections
This skill includes lightweight artifacts the agent can load on demand:../../outbound/cold-email-copywriting/references/pat-spielmann-outbound-copy.md — GTM stack + outbound copy integration patterns (Pat Spielmann)
Use the artifacts when the user asks for an implementation-ready deliverable, a repeatable workflow, or a quality check rather than generic advice.leadmagic-cli — CLI workflows and scriptingleadmagic-waterfall — Multi-provider enrichment waterfall designleadmagic-integrations — CRM and platform integrationsleadmagic-mcp — MCP server for AI agent orchestrationleadmagic-bulk-enrichment — Batch processing at scaleleadmagic-job-change — Job change detection and champion trackingnpx claudepluginhub leadmagic/gtm-skills --plugin gtm-skillsAutomates B2B contact enrichment via CLI: find emails, validate contacts, enrich CSVs in batch, and push to outbound platforms like Smartlead and Instantly.
Automates CRM workflows for HubSpot, Salesforce, and Pipedrive including lead capture, enrichment, deal tracking, pipeline management, and multi-CRM synchronization using n8n templates.
B2B cold-email outreach: prospect with Apollo, scrape company/LinkedIn signals, draft personalized emails, send via Gmail, route replies into labeled folders.