vimeo-data-collector

vimeo-data-collector is an agent for Claude Code from galacoder/vimeo-mcp. It costs 17 tokens per session (878 once invoked), scanned A, original, MIT.

An agent for collecting Vimeo video information and downloading transcripts within a chosen date range. Vimeo is a video-hosting platform.

In plain words
What is it for?
Finding videos in a specified Vimeo folder by date, saving transcripts and files, and exporting the collected data as JSON.
Why use it?
It organizes the collection process and limits unnecessary data in the results.

Agent for Claude Code

Install

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.

agentmods
npx agentmods add agents/galacoder/vimeo-mcp/vimeo-data-collector
Clone the repo
git clone --depth 1 https://github.com/galacoder/vimeo-mcp

Made for: Claude Code.

Wrote 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.

agentmods badge for vimeo-data-collector

README.md
[![agentmods](https://agentmods.dev/badge/agents/galacoder/vimeo-mcp/vimeo-data-collector.svg)](https://agentmods.dev/agents/galacoder/vimeo-mcp/vimeo-data-collector)
Your own site
<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>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 878 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 3d ago against content hash 0a897e437a29, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.claude/agents/vimeo-data-collector.md · 115 lines

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"

Read the full file on GitHub · 115 lines

Changes

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.

  1. 3d ago First seen · 115 lines · 17 tokens per session scan A 0a897e437a29

Subscribe to this mod's changes

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.

Related

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…

AnastasiyaW/codex-claude-code-config · 140 tokens

AGENTS.motiscope

Agent "AGENTS.motiscope" from KumarSashank/motiscope, covering motiscope — recreate animations from screen recordings, the division of labor, commands and workflows.

KumarSashank/motiscope · 0 tokens

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.

Zeekeey-jpeg/LeRoy-HQ · 34 tokens

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.

felipenalves/InvOS · 0 tokens

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…

hex/claude-image-generation · 378 tokens

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…

chmonitor/chmonitor · 0 tokens