install
source · Clone the upstream repo
git clone https://github.com/claude-world/director-mode-lite
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/claude-world/director-mode-lite "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/mcp-check" ~/.claude/skills/claude-world-director-mode-lite-mcp-check && rm -rf "$T"
manifest:
skills/mcp-check/SKILL.mdsource content
MCP Configuration Validator
Validate the project's MCP setup for correctness and completeness.
Validation Steps
1. Check Configuration Files
(project).claude/settings.json
(user, reference)~/.claude.json
2. Validate Structure
- Valid JSON format
-
object existsmcpServers -
is setenableAllProjectMcpServers: true
3. Validate Each MCP
-
is validcommand -
properly formattedargs -
variables setenv
4. Check Essential MCPs
| MCP | Required? |
|---|---|
| memory | Recommended |
| filesystem | Optional |
| github | If .git exists |
5. Security Check
- No hardcoded secrets
- Sensitive values use env vars
Output Format
## MCP Configuration Report ### Status: VALID / ISSUES / INVALID ### Configuration Summary | MCP Server | Status | Notes | |------------|--------|-------| | memory | OK/FAIL | details | ### Issues Found 1. [Issue and fix] ### Missing Recommended MCPs - memory: `claude mcp add --scope project memory...`
Common Issues
| Issue | Fix |
|---|---|
| Invalid JSON | Check trailing commas |
| MCP not loading | |
| Missing env vars | Add with |