Check Context7 MCP server status and agent integration
From opspal-salesforcenpx claudepluginhub revpalsfdc/opspal-commercial --plugin opspal-salesforce[options]Check the status of Context7 integration for Salesforce project:
Commands to run:
# Check Context7 MCP configuration in Claude CLI
timeout 10s claude mcp get context7 || true
# Run repo MCP readiness test for Context7
node plugins/opspal-core/scripts/lib/mcp-connectivity-tester.js --server context7 --json
# Verify Context7 package is installed locally
npm ls @upstash/context7-mcp --depth=0
# List agents with Context7
rg -l "mcp__context7__" plugins/opspal-salesforce/agents/*.md
# Show agent tools
for file in plugins/opspal-salesforce/agents/*.md; do
agent=$(basename "$file" .md)
if grep -q "mcp__context7__" "$file"; then
echo "✅ $agent"
fi
done
# Show configuration
cat .mcp.json | jq '.mcpServers.context7'
# Verify API key presence (without printing value)
if rg -q '^CONTEXT7_API_KEY=' .env; then echo "CONTEXT7_API_KEY present"; else echo "CONTEXT7_API_KEY missing"; fi
Expected agents with Context7:
Report the status and any issues found.