Claude-skill-registry-data mcp-configuration-skill
DEPRECATED - This skill references MCP servers that no longer exist in the codebase. The ConfigurationRegistry server was archived during MCP cleanup. Use native file system tools and flash-sidekick for configuration tasks.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/mcp-configuration-skill" ~/.claude/skills/majiayu000-claude-skill-registry-data-mcp-configuration-skill && rm -rf "$T"
manifest:
data/mcp-configuration-skill/SKILL.mdsource content
⚠️ DEPRECATED: MCP Configuration Skill
STATUS: This skill is deprecated and should not be used.
Why This Skill Was Deprecated
During the MCP cleanup (December 2025), we simplified the MCP architecture from 6 custom servers to 3 production-ready servers:
- flash-sidekick - Dual-engine Gemini wrapper (Flash 2.5 Lite + Pro 2.5)
- playwright - Browser automation testing
- docker - Container management
Servers That Were Removed
- ❌ ConfigurationRegistry (
) - Moved toconfiguration-server.py_legacy_archive/ - ❌ CodebaseDocumentation (
) - Moved todocumentation-server.py_legacy_archive/ - ❌ GenKitFlowRegistry - Never implemented
- ❌ APIContractValidator - Never implemented
- ❌ DesignSystemServer - Never implemented
- ❌ FirestoreDataAccessServer - Never implemented
Reasons for Removal
- Reduced Complexity: Custom servers added maintenance overhead
- Caching Issues: Led to stale configuration states
- npm exec Errors: Caused persistent CI/CD failures
- Redundancy: File system tools provide the same functionality
- Single Source of Truth: Direct file access is more reliable
Migration Guide
Old Approach (Using This Deprecated Skill)
method: list_scripts Returns: Cached list of 84 scripts Risk: Cache may be stale
New Approach (Recommended)
# List all scripts directly find scripts/ backend/scripts/ .claude/scripts/ -type f -name "*.sh" -o -name "*.py" # Or use grep_search/find_by_name tools grep_search for specific scripts find_by_name for pattern matching
Environment Configuration
Instead of using the MCP server:
# Development cat .env.development # Staging cat .env.staging # Production cat .env.production # Validation ./scripts/validate-env.sh
What To Use Instead
| Old MCP Method | New Approach |
|---|---|
| tool with pattern matching |
| Read files directly |
| Run |
| Use or native templating |
| Direct file system queries |
Current MCP Ecosystem
For actual MCP capabilities, use:
-
flash-sidekick MCP -
toolsmcp_flash-sidekick_*
- Deep reasoning with Pro 2.5consult_pro
- Fast summarization with Flash Litequick_summarize
- Python IDF generationgenerate_idf
-
GitHub MCP -
toolsmcp_github_*- Repository management
- PR/issue tracking
- Code search
-
Playwright MCP - Browser automation (via browser_subagent)
-
Docker MCP - Container operations
Related Documentation
- See conversation
for MCP cleanup details0b3a6c3f-6c7e-4743-bc7c-a34b3bbe08e3 - Current MCP configuration:
/home/njd/careercopilot/careercopilot-1/mcp.json - Archived servers:
_legacy_archive/
Last Updated: 2025-12-28
Deprecated: 2025-12-27
Replacement: Native file system tools + flash-sidekick MCP