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 skills add PostLake/postlake-mcp --skill postlake-mediagit clone --depth 1 https://github.com/PostLake/postlake-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/skills/postlake/postlake-mcp/postlake-media)<a href="https://agentmods.dev/skills/postlake/postlake-mcp/postlake-media"><img src="https://agentmods.dev/badge/skills/postlake/postlake-mcp/postlake-media/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/postlake/postlake-mcp/postlake-media"><img src="https://agentmods.dev/badge/skills/postlake/postlake-mcp/postlake-media.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00043 | $0.00571 |
| Opus 5 | $0.00022 | $0.00285 |
| Sonnet 5 | $0.00009 | $0.00114 |
| Haiku 4.5 | $0.00004 | $0.00057 |
Grade A, and why
postlake-media 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 5d 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 POST https://api.postlake.dev/v1/media \ What it actually says
PostLake: upload media
Upload the file first to get a med_… id, then pass it as media in a publish or
schedule call. Some platforms require media (Instagram, TikTok, YouTube, Pinterest).
Auth
Authorization: Bearer $POSTLAKE_API_KEY
Base URL https://api.postlake.dev.
Upload
POST the raw bytes with the file's Content-Type. Limits: images ≤20MB
(jpeg/png/webp/gif); videos ≤200MB (mp4/mov/webm).
From a local file:
curl -X POST https://api.postlake.dev/v1/media \
-H "Authorization: Bearer $POSTLAKE_API_KEY" \
-H "Content-Type: image/jpeg" \
--data-binary @photo.jpg
From a URL (download it first, then upload the bytes):
curl -sL "https://example.com/photo.jpg" -o /tmp/m.jpg
curl -X POST https://api.postlake.dev/v1/media \
-H "Authorization: Bearer $POSTLAKE_API_KEY" \
-H "Content-Type: image/jpeg" \
--data-binary @/tmp/m.jpg
Response:
{ "id": "med_47214a…", "url": "https://media.postlake.dev/med_47214a…", "contentType": "image/jpeg", "size": 86487 }
Attach it to a post
Pass the id(s) as media, with optional alt text for accessibility:
curl -X POST https://api.postlake.dev/v1/posts \
-H "Authorization: Bearer $POSTLAKE_API_KEY" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"text": "New drop 👟",
"accounts": ["acc_54d8…"],
"media": ["med_47214a…"],
"mediaAlt": ["A pair of orange running shoes"]
}'
Tips
- Set the
Content-Typeto the real file type. It's how PostLake validates the upload. - For video platforms (YouTube/TikTok) upload an mp4 and set a title via
platformOptions.youtube.title. - Reuse a
med_…id across multiple posts; you don't need to re-upload.
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.
- 5d ago Changed 44126db868c3
- 9d ago First seen · 73 lines · 43 tokens per session scan A 924143df12db
postlake-media is a skill published in the GitHub repository PostLake/postlake-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 43 tokens to every session and 571 once invoked, about $0.0002 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 skills, from other repositories
replicate-runner
Use when run AI models on Replicate cloud API. Deploy image generation, video creation, audio processing, and custom models without managing infrastructure. Use when working with replicate runner.
geminigen-ai
Use when unified multimedia API for image generation (nano-banana-pro, imagen-4), video generation (Grok, Veo, Sora), and text-to-speech. Replaces grok-video-generation, seedance, and gemini-image-generator. Use when working with geminigen ai.
abyssale-automation
Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.
adobe-automation
Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.
canvas-design
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
voiden
Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.