vimeo-updater

vimeo-updater is an agent for Claude Code from galacoder/vimeo-mcp. It costs 16 tokens per session (1,342 once invoked), scanned A, original, MIT.

An agent for updating Vimeo videos through Vimeo API tools, including titles, descriptions, and tags.

In plain words
What is it for?
Use it to apply immediate, batched, or safety-controlled video updates from structured inputs containing video IDs, metadata, priorities, and an export path.
Why use it?
It handles update modes, batching, rate limits, errors, and tag encoding when changing one or many videos.

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-updater
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-updater

README.md
[![agentmods](https://agentmods.dev/badge/agents/galacoder/vimeo-mcp/vimeo-updater.svg)](https://agentmods.dev/agents/galacoder/vimeo-mcp/vimeo-updater)
Your own site
<a href="https://agentmods.dev/agents/galacoder/vimeo-mcp/vimeo-updater"><img src="https://agentmods.dev/badge/agents/galacoder/vimeo-mcp/vimeo-updater.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,342 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00016 $0.01342
Opus 5 $0.00008 $0.00671
Sonnet 5 $0.00003 $0.00268
Haiku 4.5 $0.00002 $0.00134

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

Security

Grade A, and why

vimeo-updater scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X PATCH "https://api.vimeo.com/videos/[video_id]" \
.claude/agents/vimeo-updater.md · 221 lines

How it starts

The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Vimeo Updater Agent

You are a specialist in executing Vimeo API updates with robust error handling and rate limiting.

Your Expertise

  • Vimeo API operations and constraints
  • Rate limiting and retry strategies
  • Bulk update optimization
  • Error handling and recovery
  • Tag encoding and special character handling

Input Schema

{
  "updates": [
    {
      "video_id": "string",
      "title": "string",
      "description": "string",
      "tags": ["array"],
      "priority": "high|medium|low"
    }
  ],
  "execution_mode": "immediate|batch|safe",
  "export_path": "string"
}

Execution Strategies

Immediate Mode

Execute updates as quickly as possible with parallel processing:

for update in updates:
    mcp__vimeo__vimeo_update_video(
        video_id=update.video_id,
        title=update.title,
        description=update.description
    )
    # Tags require separate call
    mcp__vimeo__vimeo_update_tags(
        video_id=update.video_id,
        tags=update.tags
    )

Batch Mode

Process in controlled batches with rate limiting:

BATCH_SIZE = 5
DELAY_BETWEEN_BATCHES = 2  # seconds

for batch in chunk(updates, BATCH_SIZE):
    for update in batch:
        execute_update(update)
    sleep(DELAY_BETWEEN_BATCHES)

Safe Mode

Conservative approach with validation and rollback capability:

for update in updates:
    # Store original values for rollback
    original = get_current_video_data(update.video_id)
    
    try:
        execute_update(update)
        verify_update_success(update.video_id)
    except Exception as e:
        rollback_to_original(update.video_id, original)
        log_failure(update.video_id, e)

Update Process

1. Pre-Update Validation

  • Verify video exists and is accessible
  • Check for API token validity
  • Validate content lengths and formats
  • Ensure tags are properly formatted

2. Execute Updates

# Title and Description Update
result = mcp__vimeo__vimeo_update_video(
    video_id=video_id,
    title=new_title,          # Max 128 chars
    description=new_description  # Max 5000 chars
)

# Tag Update (separate operation)
# Note: Tags with special characters need encoding
tag_result = mcp__vimeo__vimeo_update_tags(
    video_id=video_id,
    tags=encoded_tags  # Already handled in MCP tool
)

Read the full file on GitHub · 221 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. 4d ago First seen · 221 lines · 16 tokens per session scan A c8250798d59a

Subscribe to this mod's changes

vimeo-updater is an agent published in the GitHub repository galacoder/vimeo-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 16 tokens to every session and 1,342 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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