From GTM Skills
Configures MCP servers for GTM workflows with tool curation, permission design, and audit logging. Use when connecting CRM, enrichment, or analytics tools to AI agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gtm-skills:mcp-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
MCP turns AI agents into tool-using operators. The risk is that teams connect every tool, expose write access, and then wonder why the agent behaves unpredictably. Good MCP setup is not "give the agent more tools." It is tool curation, permission design, and auditability.
MCP turns AI agents into tool-using operators. The risk is that teams connect every tool, expose write access, and then wonder why the agent behaves unpredictably. Good MCP setup is not "give the agent more tools." It is tool curation, permission design, and auditability.
This skill configures MCP for GTM workflows where agents research accounts, enrich records, inspect CRM, draft messaging, and route tasks without uncontrolled external side effects.
Use this skill when the user asks to "set up MCP for sales tools", "connect our CRM to Claude/Jesse", "give my agent enrichment capabilities", "build an MCP server for GTM tools", "configure MCP permissions", "connect LeadMagic MCP", "orchestrate multiple MCP servers", or "make agent tool use safer".
MCP standardizes how agents discover tools, resources, and prompts. The key design principle is clear tool descriptions and predictable tool inputs/outputs.
Tools should be narrowly described, unambiguous, and paired with verification steps. Agents need clear rules for when to call a tool and when to ask for confirmation.
Agents should receive the minimum access needed for the current task. Read-only first, write access only where the business process explicitly requires it.
Log every tool call: tool name, who triggered it, timestamp, and a short summary of inputs/outputs. Without this, you cannot debug mistaken CRM writes or sequence enrollments.
| Category | Example Tools | Default Permission |
|---|---|---|
| Enrichment | email finder, company enrichment | Read / lookup |
| CRM | accounts, contacts, deals | Read-only first |
| Sequencing | campaign creation, enrollment | Draft-only |
| Analytics | dashboards, event data | Read-only |
| Support | Plain MCP (threads, customers, tenants, help center) | Read + draft replies; confirm before send |
For each MCP server, document available tools, inputs required, outputs returned, side effects, rate limits, permission level, and human approval requirement. If a tool has side effects, its name and description should make that obvious.
Typical configuration fields:
{
"mcpServers": {
"gtm-tools": {
"command": "node",
"args": ["server.js"],
"env": {
"API_KEY": "stored-in-secret-manager"
}
}
}
}
Never hardcode API keys in repo files. Use environment variables or the agent platform's secret manager.
Plain MCP (BYOAI support): Remote server https://mcp.plain.com/mcp — OAuth via
Plain account (same permissions as the user). Tools cover thread search, customer lookup,
help center, draft replies (addGeneratedReply), and state changes (assign, label, done)
with human approval before customer-facing sends. Pair with headless-support →
references/byoai-headless-stack.md when stacking Attio + Plain + agent IDE.
Minimum policies: read-only by default, confirmation before CRM writes, confirmation before sequence enrollment, no autonomous sends, rate limits per tool, audit log for every tool call, and surfaced errors.
MCP agents should not loop hundreds of enrich or CRM writes in chat. For
approved batch jobs, agents POST to n8n webhook MCP-01 (n8n-toolkit) with
HMAC + one-time approval_token. n8n runs deterministic pipelines with audit
logs; agent uses MCP read tools to verify results.
Run a test workflow: research one account → enrich one contact → read CRM record → draft outreach → stop before sending → verify logs contain every tool call.
# MCP Configuration Plan
## Servers
| Server | Tools | Permission | Side Effects | Approval Required |
|---|---|---|---|---|
## Tool Policies
- Read-only tools:
- Draft-only tools:
- Write tools:
- Forbidden actions:
## Client Config
[Configuration block with secrets referenced via env vars]
## Test Workflow
1.
2.
3.
## Observability
- Log destination:
- Fields captured:
- Alert conditions:
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:
Use the artifacts when the user asks for an implementation-ready deliverable, a repeatable workflow, or a quality check rather than generic advice.ai-sdr-setup — guardrails, pilot scope, and human handoff for agent workflowsleadmagic-mcp — LeadMagic-specific MCP setupheadless-support — Plain BYOAI stack, deflection funnel, KB requirementscrm-integration — CRM read/write patterns and field mappingapi-enrichment — enrichment API usage and batch patternsnpx claudepluginhub leadmagic/gtm-skills --plugin gtm-skillsConfigures LeadMagic MCP for AI agents — tool discovery, permission scoping, safe enrichment workflows, and agent handoff patterns.
Configures, deploys, and troubleshoots Model Context Protocol (MCP) servers for AI agent workflows with Claude Desktop/Code. Covers configs, Python/Node setups, multi-server management, and connection debugging.
Scaffolds code execution flows for MCP agents to reduce context token usage across many tool calls, large intermediate data, or PII-sensitive workflows.