Agent skill · AI & Agents

mcp-chaining

Research-to-implement pipeline chaining 5 MCP tools with graceful degradation

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill mcp-chaining --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/mcp-chaining/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# MCP Chaining Pipeline A research-to-implement pipeline that chains 5 MCP tools for end-to-end workflows. ## When to Use - Building multi-tool MCP pipelines - Understanding how to chain MCP calls with graceful degradation - Debugging MCP environment variable issues - Learning the tool naming conventions for different MCP servers ## What We Built A pipeline that chains these tools: | Step | Server | Tool ID | Purpose | |------|--------|---------|---------| | 1 | nia | `nia__search` | Search library documentation | | 2 | ast-grep | `ast-grep__find_code` | Find AST code patterns | | 3 | morph | `morph__warpgrep_codebase_search` | Fast codebase search | | 4 | qlty | `qlty__qlty_check` | Code quality validation | | 5 | git | `git__git_status` | Git operations | ## Key Files - `scripts/research_implement_pipeline.py` - Main pipeline implementation - `scripts/test_research_pipeline.py` - Test harness with isolated sandbox - `workspace/pipeline-test/sample_code.py` - Test sample code ## Usage Examples ```bash # Dry-run pipeline (preview plan without changes) uv run python -m runtime.harness scripts/research_implement_pipeline.py \ --topic "async error handling python" \ --target-dir "./wo

What's inside
Steps it walks through
  1. When to Use
  2. What We Built
  3. Key Files
  4. Usage Examples
  5. Critical Fix: Environment Variables
  6. Graceful Degradation Pattern
  7. Tool Name Reference
  8. nia (Documentation Search)
  9. ast-grep (Structural Code Search)
  10. morph (Fast Text Search + Edit)
  11. qlty (Code Quality)
  12. git (Version Control)
  13. Pipeline Architecture
  14. Error Handling
Commands it runs
Dry-run pipeline (preview plan without changes)
uv run python -m runtime.harness scripts/research_implement_pipeline.py \
Run tests
uv run python -m runtime.harness scripts/test_research_pipeline.py --test all
View the pipeline script
cat scripts/research_implement_pipeline.py
More from Continuous-Claude-v3
All skills →
About this skill
What does the mcp-chaining skill do?

Research-to-implement pipeline chaining 5 MCP tools with graceful degradation

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill mcp-chaining --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going