apify-utils
Provides access to MLB scores, schedules, standings, team directories, and game summaries through the sports_scores tool.
Provides access to NBA scores, schedules, standings, team directories, and game summaries through the sports_scores tool.
Provides access to NHL scores, schedules, standings, team directories, and game summaries through the sports_scores tool.
Provides access to UFC scores, schedules, standings, team directories, and game summaries through the sports_scores tool.
Provides tools for retrieving YouTube thumbnail URLs and files, including metadata such as title, channel, and per-size availability, with optional saving to a key-value store.
apify-utils-mcp
Four small utilities behind one MCP server: PDF text, tables and OCR, YouTube thumbnail URLs and files, sports scores and standings, and ATP/WTA tennis.
Each tool is a thin client over a public Apify Actor. Runs are billed by Apify to your own account — see Pricing. This server never proxies a call, never sees your token or your results, and never pays for a run on your behalf.
Install
Requires uv and a free Apify token.
{
"mcpServers": {
"apify-utils": {
"command": "uvx",
"args": ["--from", "git+https://github.com/moonie0201/apify-utils-mcp", "apify-utils-mcp"],
"env": { "APIFY_TOKEN": "apify_api_..." }
}
}
}Client | Where that JSON goes |
Claude Desktop |
|
Cursor |
|
Claude Code |
|
Related MCP server: PDF Tools MCP Server
Tools
Tool | What it does | Spend cap | Cost |
| Text, markdown and ruled tables per page, per document, or as RAG chunks with page and character offsets. Optional Tesseract OCR for pages with no text layer. |
| $0.0003/page, $0.003/OCR page |
| Thumbnail URLs (jpg and webp) for video URLs or bare IDs, with per-size availability, bytes and etag from a HEAD probe, plus title and channel. Optionally saves the files to your own key-value store. |
| $0.005/video |
| Scores, schedules, standings, team directories and game summaries across 33 leagues. |
| $0.002/game · $0.001/standings or team row · $0.004/summary |
| ATP and WTA matches with per-set scores, round, seeds, country, court and result text. |
| $0.002/match |
| Every tool, the Actor behind it, its exact per-event price and its spend-cap argument. | — | free, no network |
Filters (page_range, teams, status, max_pages_per_pdf) are applied before
billing, so a narrow query is cheap rather than a big response you post-filter. The
spend-cap argument is required on every paid tool — there is no way to start an
unbounded run from here.
Pricing
No Actor here charges a start fee, so a run that fails or finds nothing costs nothing.
Tool | Event | Price | Free, always |
| page | $0.0003 | document summary rows, error rows, pages outside |
| ocr-page | $0.003 | image-only pages when |
| video | $0.005 |
|
| game | $0.002 |
|
| row | $0.001 | — |
| summary | $0.004 | — |
Worked examples: a 2-page invoice is $0.0006, a 100-page manual $0.03, 20 scanned pages with OCR $0.06, 100 videos $0.50, today's NBA slate of 8 games $0.016, 500 game summaries $2.00.
Billing lands on the Apify account behind your own APIFY_TOKEN. The spend-cap
argument is not just documentation: the server turns it into the run's
maxTotalChargeUsd, so Apify enforces the dollar ceiling itself and stops the run when
it is reached. Because OCR pages draw on the same max_pages budget at ten times the
price, max_pages=1000 means $0.30 with ocr off and $3.00 with it on, and the
ceiling sent to Apify follows whichever applies. Apify refuses a ceiling below an
Actor's own minimum ($0.05 for extract_pdf, $0.10 for the rest), so very small runs ask
for that floor — a ceiling, not a charge: a two-page PDF still costs $0.0006.
The run is also started with timeout=290, inside Apify's 300 s synchronous window, so a
run can never outlive the call and keep charging in the background.
Sports data: read this first
Unofficial. Not affiliated with, endorsed by or sponsored by ESPN, The Walt Disney Company or any league. Data comes from the unauthenticated JSON feeds that espn.com itself uses; they are undocumented, Disney's Terms of Use for espn.com restrict automated access, and ESPN may change or block access without notice — if that happens the Actor fails the run and charges nothing, and we stop within 48 h of any notice from ESPN or Disney. Scores, schedules and standings are facts; ESPN's articles, video and images are ESPN's copyrighted content and are not included. Odds are one sportsbook's pregame line shown on ESPN, for information only — not for wagering. Team and league names and logos are trademarks of their owners. Removal requests: TAKEDOWN.md — honoured in 48 h.
include_odds defaults to off here, unlike the Actor. Turn it on only if you want the
pregame line copied into the row. timezone defaults to UTC and only affects the
dateLocal field; feed dates are UTC either way.
Availability. All four Actors are public: acotr_moonie/pdf-text-extractor,
acotr_moonie/youtube-thumbnail-downloader, acotr_moonie/espn-sports-scraper and
acotr_moonie/tennis-scores-scraper (the two sports listings since 2026-08-28). Every
tool was verified end to end against its live Actor.
leagues accepts: nfl, ncaaf, nba, wnba, ncaab, ncaaw, mlb, nhl, mls,
nwsl, epl, championship, fa-cup, la-liga, serie-a, bundesliga, ligue-1,
eredivisie, primeira-liga, liga-mx, saudi-pro-league, wsl, ucl, uel, uecl,
nations-league, world-cup, copa-libertadores, atp, wta, pga, f1, ufc — or
any raw ESPN path such as soccer/bra.1, which comes back as a free error row if unknown.
YouTube
Nominative reference only: this reads the public i.ytimg.com thumbnail CDN and YouTube's
public oEmbed endpoint. Not affiliated with, endorsed by or sponsored by YouTube or
Google; the YouTube name and logo are trademarks of Google LLC. Thumbnails are the
copyright of the uploader or their licensors — the tool retrieves them, it does not grant
you a licence to republish them.
What it will not do
Nothing is inferred. Where a value cannot be determined the field is
null.extract_pdfreads PDFs you point it at with a plain GET, no proxy and no login. You are responsible for the hosting site's terms and robots rules. PDFs whose owner disabled text copying are always skipped, with a free error row and no override.Markdown headings and paragraphs are heuristics over font size and line gaps, not a layout model. Table extraction finds tables drawn with ruling lines; borderless tables stay in the text.
youtube_thumbnailsdoes not expand playlist or channel URLs, and does not download video.The sports tools carry no news, articles, rosters, injuries, athlete bios, play-by-play or video, and no ITF or Challenger tennis.
Development
uv venv && uv pip install -e ".[dev]"
python -m pytest tests -q # offline: httpx is monkeypatched, nothing is billed
ruff check . && ruff format --check .
python -m apify_utils_mcp --list-toolsLinks
Actor source, MIT: https://github.com/moonie0201/apify-utils
Privacy policy: https://github.com/moonie0201/apify-utils/blob/main/PRIVACY.md
Takedown policy: https://github.com/moonie0201/apify-utils/blob/main/TAKEDOWN.md
Disclosure
I built this, and the four Actors behind it are paid. The adapter code is open and MIT licensed.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceSwiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key required5
- AlicenseAqualityDmaintenanceA comprehensive tool server for reading, merging, and extracting content from PDF files via local paths or direct URLs. It enables metadata retrieval, regex searching, and page-specific text extraction with built-in caching and workspace-restricted security.9MIT
- AlicenseBqualityCmaintenanceParse any file or URL into structured text. Extract text from PDF, DOCX, YouTube, web pages, images, and 25+ formats via one API. Tools: parse_url, parse_file, get_youtube_transcript.313MIT
- AlicenseNot gradedqualityDmaintenanceMulti-tool MCP server for AI agents with 29 tools across web scraping, SEO analysis, screenshot and PDF generation, domain intelligence, content extraction, multi-chain EVM blockchain queries, and security toolkit. Free tier available with no auth required.331MIT
Related MCP Connectors
Deterministic AI agent microtools, no accounts/API keys. fetch_extract: 98% token cut. 38 tools.
Read a URL as clean markdown, screenshot a website, url to PDF. Web access for agents, no signup.
Summarize URLs, repurpose content, daily news digests, find competitors. Cost telemetry built in.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/moonie0201/apify-utils-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server