We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/r-huijts/strava-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
[
{
"type": "time",
"data": Array.from({ length: 5000 }, (_, i) => i),
"series_type": "time",
"original_size": 5000,
"resolution": "high"
},
{
"type": "distance",
"data": Array.from({ length: 5000 }, (_, i) => i * 5.2),
"series_type": "time",
"original_size": 5000,
"resolution": "high"
},
{
"type": "heartrate",
"data": Array.from({ length: 5000 }, (_, i) => 120 + Math.sin(i / 100) * 50 + (i % 50)),
"series_type": "time",
"original_size": 5000,
"resolution": "high"
},
{
"type": "watts",
"data": Array.from({ length: 5000 }, (_, i) => 200 + Math.cos(i / 200) * 300 + (i % 100)),
"series_type": "time",
"original_size": 5000,
"resolution": "high"
},
{
"type": "latlng",
"data": Array.from({ length: 5000 }, (_, i) => [51.5 + i * 0.0001, -0.1 + i * 0.0001]),
"series_type": "time",
"original_size": 5000,
"resolution": "high"
}
]