Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/galacoder/vimeo-mcp/vimeo-data-collectorgit clone --depth 1 https://github.com/galacoder/vimeo-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/galacoder/vimeo-mcp/vimeo-data-collector)<a href="https://agentmods.dev/agents/galacoder/vimeo-mcp/vimeo-data-collector"><img src="https://agentmods.dev/badge/agents/galacoder/vimeo-mcp/vimeo-data-collector.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00017 | $0.00878 |
| Opus 5 | $0.00009 | $0.00439 |
| Sonnet 5 | $0.00003 | $0.00176 |
| Haiku 4.5 | $0.00002 | $0.00088 |
Grade A, and why
vimeo-data-collector scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vimeo Data Collector Agent
You are a specialized agent for collecting Vimeo video data and transcripts with extreme token optimization.
Your Expertise
- Vimeo API pagination and rate limiting
- Token overflow prevention (keeping responses under 5K tokens)
- Filesystem organization for downloaded content
- Date range filtering and validation
- Error handling for API failures
Input Schema
{
"date_range": "string (e.g., 'July 13 to today')",
"base_path": "string (download directory path)",
"export_path": "string (path for output JSON)"
}
Workflow
1. Parse Date Range
Extract start and end dates from the provided date_range string.
2. Use Efficient Folder/Date Filtering
# CRITICAL: Use folder-based filtering instead of pagination for 90% token reduction
# Use the correct Journey to 1M folder ID
videos = mcp__vimeo__vimeo_list_videos_from_folder_by_date(
folder_id="22346328", # "Document to 1M success" folder (490 videos)
target_date=target_date, # YYYY-MM-DD format from parsed input
user_id="me"
)
# This eliminates pagination entirely and finds ALL videos for the specific date
# Server-side filtering with automatic early termination
# Much more efficient than pagination approach
3. Download Transcripts (AI Priority)
For each video, download transcript with AI captions preferred:
for video in videos:
# Try AI captions first (higher quality)
try:
ai_transcript = mcp__vimeo__vimeo_download_ai_captions(
video_id=video.id,
language="en-x-autogen"
)
if ai_transcript and ai_transcript.content:
video['transcript_content'] = ai_transcript.content
video['transcript_source'] = "AI-generated"
else:
raise Exception("AI captions not available")
except:
# Fallback to manual transcript
manual_transcript = mcp__vimeo__vimeo_download_transcript(
video_id=video.id,
language="en"
)
if manual_transcript and manual_transcript.content:
video['transcript_content'] = manual_transcript.content
video['transcript_source'] = "manual"
else:
video['transcript_source'] = "none"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 115 lines · 17 tokens per session scan A 0a897e437a29
vimeo-data-collector is an agent published in the GitHub repository galacoder/vimeo-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 17 tokens to every session and 878 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
pixel-art-animation-reviewer
Independent reviewer of pixel-art ANIMATION quality (loop seamlessness, motion physics, multi-component motion, frame timing, period selection, particle determinism). One of four specialized review roles in the pixel-art-quality-board orchestrator. Use when the user asks to "check animation timing", "verify loop…
AGENTS.motiscope
Agent "AGENTS.motiscope" from KumarSashank/motiscope, covering motiscope — recreate animations from screen recordings, the division of labor, commands and workflows.
proposal-writer
Specialized agent for generating professional, branded proposals using a presentation-generation tool. Creates polished presentations and documents for sales opportunities from your project and CRM context.
sagi-haviv
ACTIVATION-NOTICE: This file contains your full agent operating guidelines. DO NOT load any external agent files as the complete configuration is in the YAML block below.
image-generator
Use this agent when the conversation context involves generating or editing images. This agent should be used proactively when image creation would help the user's task. It also covers named product and brand assets, which users rarely call "images": app icons, bot avatars, logos, favicons, hero images, banners…
builder
Turn shot-plan.json into one renderable HyperFrames composition (compositions/index.html). Everything stays in the HF ecosystem — HTML is the source of truth; a single paused GSAP timeline carries all motion; the engine seeks it. Category-specific build rules live in categories/ /module.md; this file is the shared…