guardian-mcp-server
Version:
MCP server for The Guardian newspaper
7 lines • 316 B
JavaScript
import { formatSectionsResponse } from '../utils/formatters.js';
export async function guardianGetSections(client, args) {
const response = await client.getSections();
const sections = response.response.results;
return formatSectionsResponse(sections);
}
//# sourceMappingURL=guardian-get-sections.js.map