We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mister-weeden/wordpress-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
status.shβ’1.2 KiB
#!/bin/bash
echo "π WordPress MCP Server - Status Check"
echo "====================================="
# Check if services are running
echo "π Service Status:"
docker-compose ps
echo ""
echo "π Connection Tests:"
# Test WordPress
if curl -s -I http://localhost:8888 | grep -q "200 OK"; then
echo "β WordPress is accessible at http://localhost:8888"
else
echo "β WordPress is not accessible"
fi
# Test MCP server (if running in HTTP mode)
if curl -s http://localhost:9001/health &>/dev/null; then
echo "β MCP Server HTTP is accessible at http://localhost:9001"
else
echo "βΉοΈ MCP Server HTTP not accessible (normal if using stdio mode)"
fi
# Test database connection
if docker-compose exec -T bedrock-db mysqladmin ping -h localhost --silent 2>/dev/null; then
echo "β Database is accessible"
else
echo "β Database is not accessible"
fi
echo ""
echo "π Resource Usage:"
docker stats --no-stream --format "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}"
echo ""
echo "πΎ Volume Usage:"
docker system df
echo ""
echo "π§ Quick Actions:"
echo "./logs.sh [service] - View logs"
echo "./backup.sh - Create backup"
echo "./reset.sh - Reset everything"