一键导入
multi-tool-pipeline
Advanced MCP skill demonstrating multi-tool orchestration with git repository analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Advanced MCP skill demonstrating multi-tool orchestration with git repository analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | multi-tool-pipeline |
| description | Advanced MCP skill demonstrating multi-tool orchestration with git repository analysis |
Use this Skill to:
This is a demonstration skill showing how to chain multiple MCP tools.
Demonstrates advanced skill patterns:
Pipeline:
When you need to analyze a git repository, execute:
cd /home/khitomer/Projects/mcp-code-execution-enhanced
uv run python -m runtime.harness scripts/multi_tool_pipeline.py \
--repo-path "." \
--max-commits 5
--repo-path: Path to git repository (default: ".")--max-commits: Maximum number of commits to analyze (default: 10)# Analyze current repository
uv run python -m runtime.harness scripts/multi_tool_pipeline.py \
--repo-path "." \
--max-commits 20
# Analyze different repository
uv run python -m runtime.harness scripts/multi_tool_pipeline.py \
--repo-path "/path/to/repo" \
--max-commits 5
The skill returns structured data containing:
Progress is printed during execution:
[1/3] Getting repository status...
[2/3] Fetching last N commits...
[3/3] Getting branch information...
✓ Pipeline complete
Configure a git-capable MCP server in mcp_config.json:
{
"mcpServers": {
"git": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-git", "--repository", "."]
}
}
}
Use this as a template for creating custom multi-tool workflows.
Based on this pattern, you can create workflows that:
The CLI argument pattern keeps skills immutable while allowing flexible execution.