We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cobanov/teslamate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
software_update_history.sql•255 B
SELECT c.name as car_name,
u.version,
u.start_date,
u.end_date,
EXTRACT(
EPOCH
FROM (u.end_date - u.start_date)
) / 60 as update_duration_min
FROM updates u
JOIN cars c ON u.car_id = c.id
ORDER BY u.start_date DESC;