connect — Source Access Setup & Diagnosis
An FDEOps skill that tells Claude how to configure or troubleshoot access to a requested data source (MCP) using whatever host tools are available.
AutomationIntermediate★ 816⑂ 104AI score 5/10Last updated: Sep 21, 2026
What it does
- Standardizes how the agent sets up MCP access to a data source or diagnoses a broken connection.
- Forces a read of
references/task-context.md(task context contract) andreferences/connect.md(the method) before any action. - Enforces guardrails: credentials stay with the host, source configuration needs no engagement record, and the agent must never claim that installing a skill provisions infrastructure.
- When invoked from the
@fdeworkflow, it reuses the existing sanitized packet and scope instead of restarting discovery.
Who it's for
- Teams already running the FDEOps operating model
- Solutions/data engineers who repeatedly wire up and verify MCP sources across customers
- Operators who want to stop agents from reporting optimistic "it's connected" results
Examples
- "Hook up the customer's Postgres MCP" → checks available host tools, walks the setup, keeps credentials in host config only.
- "Source queries worked yesterday, not today" → reports honestly which checks were run and which capabilities are missing.
- Called mid-
@fderun → continues straight to the connection step without re-asking answered questions.
· · · 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/suboss87/FDEOps/HEAD/skills/connect/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/connect folder from the GitHub repo suboss87/FDEOps into my ~/.claude/skills/suboss87-connect/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/suboss87/FDEOps.git && mkdir -p ~/.claude/skills && cp -r FDEOps/skills/connect ~/.claude/skills/connect⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/suboss87/FDEOps.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy this skill:
cp -r FDEOps/skills/connect ~/.claude/skills/connect - Verify the
references/files came along:ls ~/.claude/skills/connect/references - Because this skill assumes the wider FDEOps pack, consider installing everything:
cp -r FDEOps/skills/* ~/.claude/skills/ - Restart Claude Code and ask something like "set up the MCP connection for this source" to trigger it.
View source on GitHub ↗License: MIT