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
monthly_driving_summary.sql•479 B
SELECT c.name as car_name,
DATE_TRUNC('month', d.start_date) as month,
COUNT(*) as total_trips,
SUM(d.distance) as total_distance_km,
AVG(d.distance) as avg_trip_distance_km,
SUM(d.duration_min) as total_driving_time_min,
AVG(d.outside_temp_avg) as avg_outside_temp,
MAX(d.speed_max) as max_speed_reached
FROM drives d
JOIN cars c ON d.car_id = c.id
GROUP BY c.id,
c.name,
DATE_TRUNC('month', d.start_date)
ORDER BY month DESC,
c.name;