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
drive_summary_per_day.sql•192 B
SELECT DATE(start_date) AS drive_day,
COUNT(*) AS drive_count,
SUM(distance) AS total_km,
SUM(duration_min) AS total_minutes
FROM drives
GROUP BY drive_day
ORDER BY drive_day DESC;