We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Malachi-devel/the-news-api-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Consolidated routes for the News Aggregator API
*/
import { Router } from 'express';
import newsRoutes from './news.routes';
import cacheRoutes from './cache.routes';
const router = Router();
// Register routes
router.use('/news', newsRoutes);
router.use('/cache', cacheRoutes);
export default router;