CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Transloadit Media Processing

transloadit/node-sdk
7 toolsauthSTDIO, HTTPregistry active
Summary

Connects Claude to Transloadit's cloud media processing API with 86+ specialized robots for manipulating video, audio, images, and documents. You get MCP tools that wrap their assembly creation workflow, which means you can define processing pipelines (resize images, transcode video, extract thumbnails, convert documents) and execute them directly from Claude. Available over both stdio and streamable HTTP transports. Reach for this when you need serious media transformation capabilities without building your own processing infrastructure. Requires a Transloadit account with API credentials. Built from their official Node SDK, so you're working with the same primitives their JavaScript clients use.

Install to Claude Code

verified
claude mcp add --transport http mcp-server https://api2.transloadit.com/mcp --header 'Authorization: YOUR_AUTHORIZATION'

Run in your terminal. Add --scope user to make it available in every project.

Review the command, arguments, and environment values before installing — MCP servers run with your local permissions.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Verified live against the running server on Jun 10, 2026.

verified live7 tools
transloadit_lint_assembly_instructionsLint Assembly Instructions without creating an Assembly. Returns structured issues.3 params

Lint Assembly Instructions without creating an Assembly. Returns structured issues.

Parameters* required
strictboolean
instructions*value
return_fixedboolean
transloadit_create_assemblyCreate or resume an Assembly, optionally uploading files and waiting for completion.10 params

Create or resume an Assembly, optionally uploading files and waiting for completion.

Parameters* required
filesarray
fieldsobject
assembly_urlstring
instructionsvalue
upload_behaviorstring
one of await · background · none
wait_timeout_msinteger
expected_uploadsinteger
upload_chunk_sizeinteger
upload_concurrencyinteger
wait_for_completionboolean
transloadit_get_assembly_statusFetch the latest Assembly status by URL or ID.2 params

Fetch the latest Assembly status by URL or ID.

Parameters* required
assembly_idstring
assembly_urlstring
transloadit_wait_for_assemblyPolls until the Assembly completes or timeout is reached.4 params

Polls until the Assembly completes or timeout is reached.

Parameters* required
timeout_msinteger
assembly_idstring
assembly_urlstring
poll_interval_msinteger
transloadit_list_robotsReturns a filtered list of robots with short summaries.4 params

Returns a filtered list of robots with short summaries.

Parameters* required
limitinteger
cursorstring
searchstring
categorystring
transloadit_get_robot_helpReturns a robot summary and parameter details.3 params

Returns a robot summary and parameter details.

Parameters* required
robot_namestring
robot_namesarray
detail_levelstring
one of summary · params · examples
transloadit_list_templatesList Assembly Templates (owned and/or builtin). Tip: pass include_builtin: "exclusively-latest" to list builtins only.7 params

List Assembly Templates (owned and/or builtin). Tip: pass include_builtin: "exclusively-latest" to list builtins only.

Parameters* required
pageinteger
sortstring
one of id · name · created · modified
orderstring
one of asc · desc
keywordsarray
page_sizeinteger
include_builtinstring
one of all · latest · exclusively-all · exclusively-latest
include_contentboolean

Build Status Coverage

Transloadit Logo

Transloadit JavaScript/TypeScript SDKs

Monorepo for Transloadit SDKs, shared packages, and the MCP server.

Transloadit Server MCP server

Packages

  • @transloadit/node — Node.js SDK + CLI. See packages/node/README.md.
  • transloadit — Stable unscoped package (built from @transloadit/node).
  • @transloadit/mcp-server — MCP server (Streamable HTTP + stdio). See packages/mcp-server/README.md.
  • @transloadit/types — Shared TypeScript types.
  • @transloadit/utils — Shared utilities.
  • @transloadit/zod — Zod schemas for Transloadit APIs.

Quick start

Node SDK

import { Transloadit } from '@transloadit/node'

const client = new Transloadit({
  authKey: process.env.TRANSLOADIT_KEY as string,
  authSecret: process.env.TRANSLOADIT_SECRET as string,
})

const result = await client.createAssembly({
  params: {
    steps: {
      ':original': { robot: '/upload/handle' },
    },
  },
  files: { file: '/path/to/file.jpg' },
  waitForCompletion: true,
})

MCP server

See packages/mcp-server/README.md for MCP setup, auth, and tool docs.

Development

  • Install: corepack yarn
  • Checks + unit tests: corepack yarn check
  • Node SDK unit tests: corepack yarn workspace @transloadit/node test:unit

Repo notes

  • Docs live under docs/ (non-MCP).
  • The transloadit package is prepared via scripts/prepare-transloadit.ts.
  • PR checks enforce that tracked files in packages/transloadit/ stay in sync with @transloadit/node.
  • Tarball fingerprint parity remains available as a manual release/debug tool via corepack yarn parity:transloadit.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

TRANSLOADIT_KEY*

Your Transloadit Auth Key from https://transloadit.com/c/-/api-credentials

TRANSLOADIT_SECRET*secret

Your Transloadit Auth Secret from https://transloadit.com/c/-/api-credentials

Categories
Media & Entertainment
Registryactive
Package@transloadit/mcp-server
TransportSTDIO, HTTP
AuthRequired
Tools verifiedJun 10, 2026
UpdatedMar 16, 2026
View on GitHub

Related Media & Entertainment MCP Servers

View all →
Social Media Api

io.github.socialapishub/social-media-api

Unified social media API for AI agents. Access Facebook, Instagram, TikTok, and more.
1
xpay Social Media

io.github.xpaysh/social-media

96 social media scraping tools. Twitter/X, LinkedIn, Instagram, TikTok, Reddit, YouTube.
Youtube Media Mcp Server

com.thenextgennexus/youtube-media-mcp-server

YouTube video search with transcript extraction as first-class output.
Youtube Video Analyzer

io.github.ludmila-omlopes/youtube-video-analyzer

MCP stdio server for analyzing YouTube videos with Google Gemini
2
Social Media Ai Mcp

csoai-org/social-media-ai-mcp

social-media-ai-mcp MCP server by MEOK AI Labs
EzBiz Social Media Analytics

com.ezbizservices/social-media

AI-powered social media intelligence: profile analysis, engagement scoring, and trend detection.