Horse Racing News - Secure MCP Server by ALMC Security 2025

Horse Racing News

View on GitHub

Overview

MCP server to get content from thoroughbreddailynews.com's RSS feed

Requirements

Getting Started

Part 1: Running MCP Server

  1. Clone this repository
  2. cd horseracingnews
  3. Run uv run horse_racing_news_mcp_server.py and keep running.

Part 2: Update Claude Desktop Configuration (assuming macOS)

  1. Run cd ~/Library/Application\ Support/Claude
  2. Use your favorite editor and open up claude_desktop_config.json (e.g., vim claude_desktop_config.json)
  3. Assuming you never added an MCP server to the configuration file before, add:
{
  "mcpServers": {
    "horseracing": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/horseracingnews",
        "run",
        "horse_racing_news_mcp_server.py"
      ]
    }
  }
}

Make sure to restart Claude Desktop

Source

Prompts Used

I was informed of Thoroughbred Daily News yesterday. They provide an RSS feed at https://www.thoroughbreddailynews.com/feed/.  Can you write a Python program that:

Loads the feed
Parse the XML
For each story, show the title, content, and link

Excellent, thanks so much! Now, can you turn it into an MCP server using FastMCP? Expose one method for @mcp.tool() named get_horse_racing_news.

Related in Web Scraping - Secure MCP Servers

ServerSummaryActions
CodingBaby BrowserCodingBaby-Browser-MCP is a powerful tool that enables AI assistants like Claude 3.7 Sonnet in Curso...View
Fetcher MCP中文 | Deutsch | Español | français | 日本語 | 한국어 | Português | РусскийView
Financial Data MCP ServerA Model Context Protocol (MCP) server that provides AI assistants with real-time financial market da...View
Secure FetchThis project implements a secure URL fetching tool using FastMCP.View
Yahoo FinanceThe Model Context Protocol (MCP) is an open standard developed by Anthropic to enable seamless integ...View
WebScraping.AIA Model Context Protocol (MCP) server implementation that integrates with WebScraping.AI for web dat...View