We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gesteves/domestique'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { readFileSync } from 'fs';
import { dirname, join } from 'path';
import { fileURLToPath } from 'url';
const __dirname = dirname(fileURLToPath(import.meta.url));
/**
* MCP Resource content for Intervals.icu cycling workout syntax.
* Content is loaded from the markdown file for easier editing.
*/
export const CYCLING_WORKOUT_SYNTAX_RESOURCE = readFileSync(
join(__dirname, 'cycling-workout-syntax.md'),
'utf-8'
);