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-updatergit 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-updater)<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>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.00016 | $0.01342 |
| Opus 5 | $0.00008 | $0.00671 |
| Sonnet 5 | $0.00003 | $0.00268 |
| Haiku 4.5 | $0.00002 | $0.00134 |
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]" \ 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
)
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.
- 4d ago First seen · 221 lines · 16 tokens per session scan A c8250798d59a
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.
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…