Add MCP Integration Helper
Walks you through connecting any service as an MCP server: package discovery, .mcp.json generation, credential setup, connectivity testing and tool documentation.
AutomationIntermediate★ 764⑂ 128AI score 9/10Last updated: Aug 17, 2026
What it does
- Searches npm and known MCP directories for an existing server package for the service you want (Ahrefs, Stripe, an internal API), ranking candidates by downloads, recency and compatibility.
- Generates the exact
.mcp.jsonentry — server name,npxcommand, args, env mapping and description — ready to paste in. - If no package exists, hands you a custom MCP server template: project structure, tool definitions, I/O schemas, auth handling, error patterns and a starter skeleton for your API.
- Specifies environment-variable names (
SERVICE_API_KEYconvention) and where to store them, and never asks you to paste secrets into the chat. - Verifies the integration: server startup check, list of exposed tools, a read-only smoke test, plus error diagnostics and remediation if it fails.
- For agency setups, maps the new credentials into per-client profiles under
~/.claude-marketing/credentials/and explains brand switching.
Who it's for
- Claude Code users who want new data sources via MCP but find config files intimidating.
- Marketing agencies juggling multiple client accounts and API keys.
- Developers wrapping an internal API into a shared MCP server for their team.
Examples
- "Connect Ahrefs to the plugin" → get a shortlist of MCP packages, the
.mcp.jsonblock,AHREFS_API_KEYsetup steps and a connectivity test result. - "Integrate our internal analytics API" → no prebuilt package, so it scaffolds a custom MCP server skeleton with auth flow and tool stubs.
- "Hook up Stripe data" → config generated, a read-only account lookup confirms auth, then the tool inventory and example prompts are documented.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/indranilbanerjee/digital-marketing-pro/HEAD/skills/add-integration/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/add-integration folder from the GitHub repo indranilbanerjee/digital-marketing-pro into my ~/.claude/skills/add-integration/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/indranilbanerjee/digital-marketing-pro.git && mkdir -p ~/.claude/skills && cp -r digital-marketing-pro/skills/add-integration ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in your working directory.
- Clone the repo:
git clone https://github.com/indranilbanerjee/digital-marketing-pro.git - Create the skills folder if needed:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r digital-marketing-pro/skills/add-integration ~/.claude/skills/ - (Recommended) also copy the custom MCP guide:
cp -r digital-marketing-pro/skills/context-engine ~/.claude/skills/ - Restart Claude Code and ask something like "add a new MCP server" or run
/digital-marketing-pro:add-integration Ahrefs. - Never paste API keys into the chat — store them in a
.envfile or system environment variables using the variable names the skill recommends.
View source on GitHub ↗License: MIT