Genius Sports RSS Monitor MCP

Genius Sports RSS Monitor MCP

Read-only MCP server for monitoring public RSS and Atom feeds from competitor and industry websites, enabling competitive intelligence workflows through feed fetching, searching, and thematic summarization.

Category
Visit Server

README

Genius Sports RSS Monitor MCP

Read-only Model Context Protocol (MCP) server for monitoring public RSS and Atom feeds from competitor and industry websites. Built for Genius Sports competitive intelligence workflows.

What this MCP does

This server helps an agent track public updates from sites such as:

  • Sportradar news/blog pages
  • Stats Perform news/blog pages
  • Sports data, betting technology, fan engagement, and sports advertising publishers

It exposes five read-only tools that fetch feeds, normalize entries, filter by recency, search content, and summarize recent activity by theme.

Supported feed types

  • RSS 2.0
  • Atom
  • Public HTTP/HTTPS feeds only (no authentication)

Tools

Tool Purpose
fetch_feed Fetch and parse a feed; return metadata + normalized entries
list_recent_entries Return entries from the last N days (default 14, max 30)
search_feed_entries Search title/summary/content within a date window
compare_recent_entries Group recent entries into competitive-intelligence themes
monitor_company_feed Convenience wrapper with company name, entries, themes, and summary

Normalized entry schema

Each entry includes:

  • id
  • title
  • link
  • published_at
  • source_feed_title
  • source_feed_url
  • author (optional)
  • summary_snippet
  • content_snippet
  • categories
  • matched_query (optional, search results only)

Project structure

server.ts            # Vercel + local HTTP entrypoint
api/
  health.ts          # GET /health
  server.ts          # MCP handler exports
src/
  mcp/registerTools.ts
  types.ts
  rss/
  tools/
  utils/
scripts/
  test-feed.ts       # Local feed parser smoke test

Requirements

  • Node.js 20+
  • npm (or pnpm/yarn)

Run locally

  1. Install dependencies:
npm install
  1. Copy optional environment variables:
cp .env.example .env
  1. Start the local server:
npm run dev

This runs a local Node HTTP server and serves:

  • MCP endpoint: http://localhost:3000/mcp
  • Health check: http://localhost:3000/health

For Vercel-native local emulation, use:

npm run dev:vercel
  1. Smoke-test feed parsing without MCP:
npm run test:feed

Or test a specific feed:

npm run test:feed -- "https://example.com/feed.xml"
  1. Type-check:
npm run typecheck

Example curl checks

Health:

curl -s http://localhost:3000/health | jq

MCP initialize (Streamable HTTP clients handle session setup automatically; this is mainly for debugging):

curl -s -X POST http://localhost:3000/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"curl","version":"1.0.0"}}}'

Deploy to Vercel

  1. Install the Vercel CLI if needed:
npm i -g vercel
  1. Deploy:
vercel

For production:

vercel --prod
  1. Use your deployment URL:
  • MCP endpoint: https://YOUR-PROJECT.vercel.app/mcp
  • Health endpoint: https://YOUR-PROJECT.vercel.app/health

Recommended Vercel settings

  • Enable Fluid Compute for better MCP session behavior
  • vercel.json already sets maxDuration: 60 for the MCP handler

Optional environment variables

Set in Vercel Project Settings → Environment Variables:

Variable Default Description
FEED_FETCH_TIMEOUT_MS 15000 Feed fetch timeout in milliseconds
FEED_USER_AGENT GeniusSportsRSSMonitor/1.0 Custom User-Agent for feed requests

Connect as a Custom MCP in ChatGPT Agent Builder

  1. Deploy this server to a public HTTPS URL (for example on Vercel).
  2. Open ChatGPT → Agent Builder (or your agent configuration UI).
  3. Add a Custom MCP integration.
  4. Choose Streamable HTTP as the transport.
  5. Set the MCP server URL to:
https://YOUR-PROJECT.vercel.app/mcp
  1. Save and connect. The agent should discover these tools:
  • fetch_feed
  • list_recent_entries
  • search_feed_entries
  • compare_recent_entries
  • monitor_company_feed
  1. Verify connectivity by asking the agent to call monitor_company_feed with a public test feed.

Cursor / Claude Desktop config example

{
  "mcpServers": {
    "genius-sports-rss-monitor": {
      "url": "https://YOUR-PROJECT.vercel.app/mcp"
    }
  }
}

For local development:

{
  "mcpServers": {
    "genius-sports-rss-monitor": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

Example public feeds for testing

Use any public RSS/Atom URL. Good generic test feeds:

  • BBC News RSS: https://feeds.bbci.co.uk/news/rss.xml
  • NYT Technology RSS: https://rss.nytimes.com/services/xml/rss/nyt/Technology.xml
  • W3C News Atom: https://www.w3.org/blog/news/feed/atom/

Competitor/industry placeholders to configure in your agent (replace with the current public feed URL for each site):

  • Sportradar newsroom/blog feed: https://sportradar.com/content-type/newsroom/feed/ (verify current public feed URL)
  • Stats Perform newsroom/blog feed: https://www.statsperform.com/feed/ (verify current public feed URL)

Example agent prompt:

Monitor Sportradar's public feed for the last 14 days and summarize product updates, partnerships, and betting-related announcements.

Example tool call:

{
  "company_name": "Sportradar",
  "feed_url": "https://feeds.bbci.co.uk/news/rss.xml",
  "days_back": 14,
  "limit": 10
}

Theme categories

compare_recent_entries and monitor_company_feed use lightweight keyword heuristics to classify entries into:

  • partnerships
  • launches
  • product updates
  • customer wins
  • thought leadership
  • betting
  • advertising
  • fan engagement
  • data/integrity
  • other

Known limitations

  • Read-only: no write actions, no authenticated feeds, no scraping of pages without RSS/Atom
  • Some sites publish HTML pages but not machine-readable feeds; those URLs will fail validation or parsing
  • Theme grouping is heuristic, not ML-based
  • Feed publishers may rate-limit or block unknown user agents
  • Entries without reliable publish dates are included in recent results
  • Very large feeds are truncated by the limit parameter rather than paginated
  • Serverless cold starts may add latency on first request

Security notes

  • Only public HTTP/HTTPS URLs are accepted
  • Requests use safe timeouts and truncated response snippets
  • No secrets are logged
  • No persistent storage of fetched feed content

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured