We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lutherscottgarcia/mcp-conductor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-fixes.shโข1.27 kB
#!/bin/bash
# Test script to verify Project Intelligence Cache fixes
echo "๐งช Testing Project Intelligence Cache Fixes"
echo "=========================================="
echo ""
echo "๐ Environment Check:"
echo "MCP_TEST_MODE: ${MCP_TEST_MODE:-'not set'}"
echo "NODE_ENV: ${NODE_ENV:-'not set'}"
echo ""
echo "๐ Build Status Check:"
if [ -f "dist/index.js" ]; then
echo "โ dist/index.js exists"
echo "๐ Last modified: $(stat -f %Sm dist/index.js)"
else
echo "โ dist/index.js missing - run rebuild first!"
exit 1
fi
echo ""
echo "๐ Checking for fix indicators in compiled code:"
if grep -q "PROD MODE" dist/index.js; then
echo "โ New logging system detected in compiled code"
else
echo "โ New logging system not found - rebuild may have failed"
fi
if grep -q "MCP_TEST_MODE.*false" dist/index.js; then
echo "โ Fixed test mode detection logic found"
else
echo "โ Fixed test mode detection not found"
fi
echo ""
echo "๐ฏ Ready to test! Run these commands in Claude:"
echo "1. create_project_intelligence_cache({ projectName: 'MCPConductor' })"
echo "2. load_project_intelligence_cache({ projectName: 'MCPConductor' })"
echo ""
echo "Expected: Both operations should now work properly with detailed logging!"