We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/raza10006/elevenlabs-mcp-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check_table_structure.sql•197 B
-- Step 1: Check what columns actually exist in your orders table
SELECT column_name, data_type, is_nullable
FROM information_schema.columns
WHERE table_name = 'orders'
ORDER BY ordinal_position;