Horse Racing News
Obtém notícias de corridas de cavalos do feed RSS do thoroughbreddailynews.com.
GitHubExperimente este MCPPatrocinado
Documentação
Visão Geral
Servidor MCP para obter conteúdo do feed RSS de thoroughbreddailynews.com
Requisitos
uv. Instruções de instalação em https://docs.astral.sh/uv/getting-started/installation/
Começando
Parte 1: Executando o Servidor MCP
- Clone este repositório
cd horseracingnews- Execute
uv run horse_racing_news_mcp_server.pye mantenha-o em execução.
Parte 2: Atualizar a Configuração do Claude Desktop (assumindo macOS)
- Execute
cd ~/Library/Application\ Support/Claude - Use seu editor favorito e abra
claude_desktop_config.json(por exemplo,vim claude_desktop_config.json) - Supondo que você nunca adicionou um servidor MCP ao arquivo de configuração antes, adicione:
{
"mcpServers": {
"horseracing": {
"command": "uv",
"args": [
"--directory",
"/path/to/horseracingnews",
"run",
"horse_racing_news_mcp_server.py"
]
}
}
}
Certifique-se de reiniciar o Claude Desktop
Fonte
Prompts Utilizados
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.