video-editor-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@video-editor-mcpTrim my video to 30 seconds and convert to GIF"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
video-editor-mcp
An MCP (Model Context Protocol) server that gives Claude (or any MCP-compatible
client) real video-editing tools, powered by ffmpeg. Once connected, you can
ask Claude things like "trim intro.mp4 to the first 10 seconds, add my logo
in the corner, and export it as a GIF" and it will call these tools directly.
Requirements
Node.js 18+
ffmpeg and ffprobe installed and available on your system
PATHmacOS:
brew install ffmpegUbuntu/Debian:
sudo apt install ffmpegWindows: ffmpeg.org/download.html, then add it to PATH
Related MCP server: ffmpeg-mcp
Install
cd video-editor-mcp
npm installConfigure where your videos live
Every tool takes file paths. Relative paths are resolved against the
MEDIA_DIR environment variable (so Claude doesn't need to know your full
filesystem layout) — set it to the folder containing the videos you want to
edit. Absolute paths are always used as-is. If MEDIA_DIR isn't set, it
defaults to the directory you launch the server from.
Connect it to an MCP client
This is a standard MCP server using the stdio transport, so any MCP-compatible client/host can spawn and talk to it. The host just needs to launch this process and communicate over stdin/stdout:
Command:
nodeArgs:
["/absolute/path/to/video-editor-mcp/src/index.js"]Env:
MEDIA_DIR=/absolute/path/to/your/videos
How you wire that up depends on your host/client's own configuration format
(most MCP-aware hosts use a command + args + env shape similar to the
above).
Tools exposed
Tool | What it does |
| Duration, resolution, codecs, fps, bitrate, file size |
| Cut a clip by start time + end time/duration |
| Concatenate multiple clips into one (auto-normalizes resolution) |
| Change container/codec (mp4, mov, webm, mp3, etc.) |
| Pull the audio track out as an MP3 |
| Scale to a target width/height |
| Crop to a rectangular region |
| Rotate 90/180/270° and/or flip horizontally/vertically |
| Speed up or slow down (pitch-corrected audio) |
| Raise/lower volume, or mute |
| Grab a still frame at a timestamp |
| Burn in a caption/title, optionally timed |
| Overlay a logo image at a chosen corner |
| Fade in/out (video, audio, or both) |
| Re-encode at a target quality (CRF) to shrink file size |
| Convert a video segment into an animated GIF |
Each tool returns the resulting file's path and size, so Claude can chain operations (e.g. trim → add watermark → compress) by feeding one tool's output into the next tool's input.
Testing without Claude
Run the unit tests, which generate a synthetic test video with ffmpeg and exercise every operation:
npm testRun a full protocol-level test (spins up the server and a real MCP client, lists tools, and calls a couple of them):
node test/e2e-client.js(The e2e test expects npm test to have been run first so test/tmp/v1.mp4
exists — or generate your own test clip there.)
Notes & limitations
All operations re-encode by default for correctness (frame-accurate trims, mixed-codec merges, etc.) rather than using fast
-c copycuts, so they're not the fastest possible, but they're reliable across arbitrary inputs.This server runs entirely on your local machine and only touches files you point it at — no video data is uploaded anywhere.
There's no built-in sandboxing beyond the
MEDIA_DIRconvenience for relative paths; since the server has the same filesystem permissions as whatever process launches it, only connect it to clients you trust.
Available Tools
16 toolsadd_fadeB
Add a fade-in and/or fade-out to a video, audio, or both.
| Name | Required | Description | Default |
|---|---|---|---|
| target | No | both | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| fade_in_duration | No | Fade-in length in seconds | |
| fade_out_duration | No | Fade-out length in seconds |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only states the basic operation without mentioning side effects such as overwriting the output file, how zero durations are handled, or whether the source file is modified. Key behavior like the default fade duration of 0 (effectively disabling fades) is not disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no wasted words. It is front-loaded with the core action and targets. While it could be slightly more detailed to cover defaults, the brevity is acceptable for a simple tool and does not hinder clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 5 parameters (2 required), no output schema, and no annotations, the description is too thin. It does not explain the default behavior of fade_in_duration and fade_out_duration (both 0), the default target ('both'), or the resolution of relative paths beyond what the schema states. The description alone would leave an agent uncertain about how to prevent fades or which target is assumed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is high (80%), so a baseline of 3 applies. The description adds little beyond the schema: it echoes 'video, audio, or both' which maps to the target enum, and 'fade-in and/or fade-out' maps to the duration parameters. No additional parameter meaning is provided beyond what the schema already contains.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Add') and identifies the resource ('fade-in and/or fade-out') along with target options ('video, audio, or both'). This clearly distinguishes it from sibling tools like trim_video or extract_audio, leaving no ambiguity about its function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by stating the operation, but it does not explicitly mention when to use this tool versus alternatives or provide exclusions. No sibling comparison or contextual guidance is given, so the agent must infer usage from the name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_text_overlayA
Burn text (e.g. a caption or title) onto a video, optionally only during a time range.
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | ||
| end_time | No | Seconds when the text should disappear | |
| position | No | bottom | |
| font_size | No | ||
| font_color | No | Any ffmpeg color name or hex, e.g. "white" or "0xFF0000" | white |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| start_time | No | Seconds when the text should appear (omit to show for the whole video) | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does disclose two key behaviors: the text is 'burned' onto the video (irreversible) and can be time-limited. However, it does not mention permissions, whether the input file is modified, or the output format, which would be valuable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action. No wasted words; every element (burn text, optional time range) adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's 8 parameters, lack of output schema, and no annotations, the description is too sparse. It does not explain what the output is (e.g., the output_path), whether the original video is changed, or any prerequisites or side effects. The time-range functionality is mentioned but not expanded upon.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers 63% of parameters with descriptions (input/output paths, start/end times, font color). The tool description only reiterates the text and time range, adding no new parameter semantics. This is acceptable given the moderate schema coverage, but the description could have reinforced key parameter relationships.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Burn text') and the target resource ('onto a video'), with examples ('caption or title') that make the purpose unambiguous. It distinguishes itself from sibling tools like add_watermark by focusing specifically on text overlays.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through examples (caption/title) and the time-range option, but it does not explicitly state when to use this tool versus alternatives like add_watermark or add_fade. There are no exclusions or alternative names mentioned, so guidance is only implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_watermarkC
Overlay a logo/watermark image onto a video at a chosen corner or the center.
| Name | Required | Description | Default |
|---|---|---|---|
| opacity | No | ||
| position | No | bottom-right | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| scale_width | No | Resize the watermark to this width in pixels before overlaying | |
| watermark_path | Yes | Path to the watermark/logo image. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose behavioral traits but only mentions the basic overlay operation. It does not mention that it creates a new output file, any format requirements, or potential side effects, leaving the agent under-informed about the tool's impact.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single clear sentence with no redundant words. It is efficiently structured and immediately conveys the core operation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of video processing and the absence of output schema and annotations, the description is too sparse. It lacks details on output behavior, supported formats, or any caveats, making it incomplete for an AI agent to fully understand the tool's implications.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67%, and the description adds slight context by mentioning position ('corner or the center'), which aligns with the position enum. However, it does not explain other parameters like opacity or scale_width, so it only marginally supplements the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Overlay') and resource ('logo/watermark image onto a video'), and specifies position options ('chosen corner or the center'). It distinguishes from sibling add_text_overlay by focusing on an image watermark, though it doesn't explicitly name the alternative.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like add_text_overlay. The description simply states what it does without any context on suitable scenarios or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
adjust_volumeA
Change the audio volume of a video, or mute it entirely.
| Name | Required | Description | Default |
|---|---|---|---|
| mute | No | Set true to remove audio entirely (ignores volume_factor) | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| volume_factor | No | 1 = unchanged, 1.5 = 50% louder, 0.5 = 50% quieter |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does state the primary action and the mute option, which adds some transparency, but it does not mention side effects like re-encoding, overwriting, or whether the video track is preserved.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that front-loads the action and includes the mute alternative. Every word earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple nature of the tool and full schema coverage, the description is adequate but not rich. It lacks usage context, behavioral limitations, or output expectations, which would be valuable since there is no output schema or annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description does not add parameter semantics beyond what the schema already provides, such as volume_factor behavior or mute ignoring volume_factor, but these are already documented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: changing the audio volume of a video, with an option to mute entirely. This specific verb+resource combination distinguishes it from sibling tools like extract_audio or convert_format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus its siblings, nor any mention of alternatives or prerequisites. The description implies use for volume adjustment but does not offer any contextual direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
change_speedA
Speed up or slow down a video (audio pitch is preserved). speed_factor > 1 speeds up, < 1 slows down (e.g. 2 = 2x faster, 0.5 = half speed).
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| speed_factor | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the responsibility to disclose behavioral traits. It does so by noting that 'audio pitch is preserved' and explaining speed_factor semantics with examples. However, it does not mention output file handling (e.g., overwriting) or potential side effects, leaving some room for added detail.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, containing only two sentences. It is front-loaded with the main action and immediately provides the key parameter guidance, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with no output schema, and the description sufficiently covers its core functionality and parameter semantics. It does not explain return values, but for a file-processing tool this is often unnecessary. The input/output paths are fully described in the schema, so the description is complete enough for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds crucial meaning to the speed_factor parameter, which lacks a schema description: 'speed_factor > 1 speeds up, < 1 slows down (e.g. 2 = 2x faster, 0.5 = half speed).' This compensates for the missing schema coverage for that parameter, while input_path and output_path are adequately described in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Speed up or slow down a video.' This is a specific verb+resource pair that distinguishes it from sibling tools like trim_video or adjust_volume, which address different video properties.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for changing playback speed but provides no explicit 'when to use' or exclusions. It does not mention alternative tools or cases where this tool should not be used, such as when only trimming duration is needed. The context is clear but not elaborated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compress_videoA
Reduce a video file size by re-encoding it with a given quality level (CRF). Lower CRF = higher quality/larger file; higher CRF = smaller file/lower quality. 28 is a reasonable default.
| Name | Required | Description | Default |
|---|---|---|---|
| crf | No | ||
| preset | No | medium | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explains the quality/size tradeoff via CRF, which is useful, but it does not disclose potential side effects like overwriting the output path, the lossy nature of re-encoding, or processing time. This is adequate but not thorough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose, and wastes no words. Every sentence contributes either to what the tool does or how to use a key parameter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a moderate-complexity tool with no output schema and no annotations, the description covers the main purpose and parameter semantics well. It lacks caveats about overwriting or lossy encoding, but given the tool's straightforward nature and schema for paths, it is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions cover input_path and output_path (50% coverage). The description adds meaningful semantics for crf, which lacks a schema description, by explaining the quality/size relationship and suggesting a default. It does not elaborate on preset, but the enum values are self-explanatory. The added value on crf compensates for the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Reduce a video file size by re-encoding it with a given quality level (CRF).' It identifies a specific verb, resource, and method, and distinguishes itself from sibling tools like resize_video or convert_format by focusing on quality-based compression.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when the tool might be used (to reduce file size) and provides CRF value guidance, but it does not explicitly state when to prefer this tool over alternatives or mention any exclusions. It gives implied usage context but lacks clear 'use this instead of X' guidance found in higher-scoring examples.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
convert_formatA
Convert a video/audio file to a different container/codec. The output format is inferred from the output_path extension (e.g. .mp4, .mov, .webm, .avi, .mp3).
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | Source media path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path with the desired extension. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the burden. It discloses the key behavior of inferring output format from the output_path extension, which is valuable. However, it does not mention overwrite behavior, codec defaults, or whether input is modified, leaving some behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences front-load the main purpose and add one essential detail about extension inference. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool, the description covers the core purpose and format determination. However, it lacks explicit guidance on use cases, potential side effects (e.g., overwriting), and error handling, making it adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema fully documents both parameters with detailed descriptions of path resolution relative to MEDIA_DIR. Since coverage is 100%, the description adds minimal extra meaning beyond the schema, meeting the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states a specific verb+resource ('Convert a video/audio file to a different container/codec') and differentiates from sibling tools by focusing on format conversion rather than specific operations like trimming or extraction. The extension inference detail reinforces the purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context for when to use the tool (converting file formats/containers), but does not explicitly name exclusions or alternatives. The use case is implied and distinct from siblings, though no explicit when-not guidance is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
crop_videoC
Crop a video to a rectangular region.
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | Left offset of the crop region in pixels | |
| y | No | Top offset of the crop region in pixels | |
| width | Yes | Crop width in pixels | |
| height | Yes | Crop height in pixels | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the operation at a high level and omits details about whether the input file is overwritten, whether a new output file is created, whether re-encoding occurs, or constraints such as the crop region needing to be within the source bounds. This leaves the agent with insufficient information about side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It is appropriately concise and easy to parse, and every word contributes to the meaning. However, this conciseness sacrifices detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a video processing tool with six parameters and no output schema or annotations, the one-sentence description is incomplete. It does not explain the relationship between x/y and width/height, behavior when the crop region extends beyond the source video, or the nature of the output file. Critical context is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents all six parameters with descriptions and defaults (x and y default to 0). The description adds no additional semantic information about parameters beyond what the schema provides, so it receives the baseline score for full schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Crop' and identifies the resource 'video' and the result as 'a rectangular region.' This clearly distinguishes it from sibling operations like resize_video, which scales the entire frame, and trim_video, which selects a time range. However, it could be slightly more explicit that this selects a sub-region of the original rather than just any rectangle.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not state, for example, that crop_video should be used to remove unwanted edges while resize_video should be used to change overall dimensions. There is no mention of prerequisites, typical use cases, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_audioA
Extract the audio track from a video file and save it as an MP3.
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination .mp3 path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the core action without mentioning input validation, file overwriting behavior, codec support, or any side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, immediately clear, and contains no redundant wording.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for basic invocation but lacks context about return values, error cases, or format compatibility. Without annotations or an output schema, it leaves gaps for an agent fully understanding the tool's behavior.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters are fully described in the schema with clear path resolution semantics. The tool description adds no additional meaning beyond the schema, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'extract' with a clear resource 'audio track from a video file' and output 'MP3'. This clearly distinguishes it from sibling tools like extract_frame and convert_format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when audio needs to be extracted from a video, but provides no explicit guidance on when to use this over alternatives like convert_format. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
extract_frameA
Grab a single still frame from a video at a given timestamp and save it as an image.
| Name | Required | Description | Default |
|---|---|---|---|
| timestamp | No | Time in seconds to capture the frame | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination image path, e.g. .jpg or .png. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It states the side effect of saving an image, but does not disclose overwrite behavior, handling of invalid timestamps, or required permissions. This is minimal disclosure for a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence with no extraneous words. It front-loads the action and outcome.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is relatively simple, and the schema covers all parameters. However, with no annotations or output schema, the description should address edge cases like overwriting output or timestamp out-of-range, which it does not. It is minimally complete but leaves behavioral gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with descriptions for all three parameters (timestamp, input_path, output_path). The description adds no additional parameter semantics beyond what the schema already provides, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Grab' and clearly identifies the resource (a single still frame from a video) and the action (at a given timestamp, saved as an image). This distinguishes it from sibling tools like extract_audio or trim_video.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for extracting still frames but does not explicitly compare to alternatives or state when not to use it. The context is clear but no exclusions are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_gifB
Convert a segment of a video into an animated GIF.
| Name | Required | Description | Default |
|---|---|---|---|
| fps | No | ||
| width | No | ||
| duration | No | ||
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| start_time | No | ||
| output_path | Yes | Destination .gif path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility. It only states the conversion without disclosing details like output overwrite behavior, dependencies (e.g., ffmpeg), or how the segment is determined. The 'segment' reference is vague and relies on schema params (start_time, duration) that are not explained.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single declarative sentence that is front-loaded and contains zero filler. It is appropriately sized and immediately conveys the core function.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 6 parameters, no output schema, no annotations, and is one of many similar video tools, the description is unduly sparse. It fails to explain return values, parameter meanings, or typical usage scenarios, leaving the agent under-informed for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 33% (only input_path and output_path have descriptions). The description adds minimal semantic value, mentioning 'segment' but not elaborating on start_time, duration, fps, or width. It does not compensate for the 4 undocumented parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific action ('Convert a segment of a video') and resource ('animated GIF'), distinguishing it from siblings like extract_frame (single frame) and trim_video (video output). It uses a verb+resource structure that is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies its usage—when a GIF is needed from a video segment—but provides no explicit alternatives or exclusion criteria. It does not mention when to use this instead of convert_format or trim_video, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_media_infoA
Inspect a video or audio file: duration, resolution, codecs, fps, bitrate, file size.
| Name | Required | Description | Default |
|---|---|---|---|
| input_path | Yes | Path to the media file. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. The verb 'Inspect' clearly signals a non-destructive, read-only operation, and the property list sets expectations for the return content. It does not discuss failure modes or unsupported formats, but the essential safety profile is communicated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single compact sentence with a clear verb and a comma-separated list of returned properties. Every word earns its place, and it is appropriately front-loaded with the action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple tool (one well-documented parameter, no output schema), the description adequately conveys function and return value expectations. Minor gaps include lack of output format details and handling of unsupported file types, but these are not critical for an inspection tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter has 100% schema description coverage, including path resolution semantics. The tool description adds no extra parameter-level meaning beyond the overall purpose, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses 'Inspect' as a specific verb, identifies the resource as 'a video or audio file', and enumerates the exact metadata returned (duration, resolution, codecs, fps, bitrate, file size). This clearly distinguishes it from the sibling tools, which are all media transformation operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you need media metadata rather than modification, and the sibling tool names make the alternative operations obvious. However, it does not explicitly state 'use this when...' or name specific exclusions, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
merge_videosA
Concatenate two or more video files into one, in the given order. Clips are auto-scaled to match so different resolutions/codecs can be joined.
| Name | Required | Description | Default |
|---|---|---|---|
| input_paths | Yes | Ordered list of video paths to join. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path for the merged video. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full transparency burden. It discloses the auto-scaling behavior to handle different resolutions and codecs, which is valuable context. However, it does not explain whether this involves re-encoding, potential quality loss, or other side effects that could affect the user's expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary action, and contains no redundant filler. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is relatively simple and the schema covers both parameters well, but with no output schema and no annotations, the description could be more complete by mentioning the output format or any limitations. It covers the core behavior but leaves some contextual gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides thorough descriptions for both parameters, including relative/absolute path resolution and ordering. The description adds no parameter-specific meaning beyond what the schema covers, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool concatenates two or more video files into one in a given order, using the specific verb 'concatenate'. This distinguishes it from sibling tools that trim, convert, resize, or otherwise manipulate single videos.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this tool is for joining videos in a specified order, but it does not explicitly mention alternatives or exclusions. The usage is obvious from the purpose, but there is no direct comparison to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
resize_videoA
Resize/scale a video. Provide width, height, or both (aspect ratio is preserved if only one is given).
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | ||
| height | No | ||
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses one behavioral trait: aspect ratio is preserved when only one dimension is given. However, it does not mention other potentially relevant behaviors like output overwrite semantics, format/codec implications, or what happens when both dimensions are provided (e.g., distortion). This is a notable gap given the lack of annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, immediately stating the action ('Resize/scale a video') and adding one essential detail about aspect ratio. No redundant words or filler; it is well-structured and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple resize tool with no annotations and no output schema, the description covers the core function, parameter flexibility, and a key behavioral aspect. It lacks some finer details (e.g., effects of providing both dimensions, file handling), but given the tool's simplicity and the fact that output is implied by output_path, it is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 50%, with only input_path and output_path described. The description adds meaning by explaining that width and height can be provided individually or together and clarifies aspect ratio behavior. However, it does not explicitly state that width/height are optional (though inferred from the sentence) or define units. It partially compensates for the missing schema descriptions but not fully.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Resize/scale a video' with a specific verb and resource, clearly distinguishing it from siblings like crop_video or rotate_video. The mention of width/height and aspect ratio preservation adds precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for resizing/scaling but does not explicitly compare with alternatives or state when-not-to-use. The 'Provide width, height, or both' is more parameter guidance than contextual usage guidance, and no exclusions or sibling alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rotate_videoB
Rotate and/or flip a video.
| Name | Required | Description | Default |
|---|---|---|---|
| flip | No | none | |
| rotation | No | ||
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| output_path | Yes | Destination path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the operation, without revealing side effects (e.g., writes to output_path, whether input is preserved, codec/quality behavior, or any limitations). The description adds almost no context beyond the core action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence that front-loads the primary action. It is concise and every word contributes meaning, though it could be slightly more informative without losing conciseness. This is efficient but minimal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has 4 parameters, no output schema, and no annotations. The description does not mention return values, file handling behavior, or any caveats. It is inadequate for an agent to fully understand the tool's behavior, especially given the lack of output schema and the presence of multiple sibling tools with overlapping scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50% (only input_path and output_path are described). The description gives a high-level mapping (rotate→rotation, flip→flip) but does not explain parameter semantics beyond what the enum values already show. It adds some value but does not fully compensate for the missing descriptions on rotation and flip.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (rotate and/or flip) and the resource (video). This is a specific verb+resource that distinguishes it from sibling tools like crop_video, resize_video, and convert_format, each of which targets a different transformation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context—it is for rotating or flipping videos—but provides no explicit alternatives or when-not-to-use guidance. Since the tool's name and action are self-evident, the usage is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trim_videoA
Cut a clip out of a video between a start time and either an end time or a duration (seconds).
| Name | Required | Description | Default |
|---|---|---|---|
| duration | No | Duration of the clip in seconds (use this or end_time, not both) | |
| end_time | No | End time in seconds (use this or duration, not both) | |
| input_path | Yes | Source video path. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. | |
| start_time | No | Start time in seconds | |
| output_path | Yes | Destination path for the trimmed clip. Relative paths resolve against MEDIA_DIR (defaults to the server's working directory); absolute paths are used as-is. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the full burden of behavioral disclosure. It accurately describes the core trimming action but does not mention practical details like whether the source is preserved, what happens if the output exists, or edge cases such as invalid time ranges.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that directly states the operation with no unnecessary words. Every part contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 5-parameter tool with no output schema, the description covers the core purpose but leaves gaps such as return value, error behavior, and output format expectations. It is adequate but not fully comprehensive for an agent relying solely on this description.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (all five parameters are described in the schema). The description adds the relational meaning between start_time, end_time, and duration, but this is only a minor enhancement over the schema, which already notes mutual exclusivity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Cut' and identifies the resource as 'a video', clearly defining the operation as extracting a clip between a start time and an end or duration. This distinguishes it from spatial editing tools like crop_video and from extract_frame.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (trimming videos by time range) but does not explicitly name alternatives or state when not to use it. The context is sufficient for an agent to infer the appropriate scenario.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool targets a distinct video/audio editing operation with clear separation: inspecting, extracting, trimming, merging, converting, resizing, cropping, rotating, speed/volume changes, frame grabbing, overlays, fades, compression, and GIF generation. Even overlapping pairs like convert_format vs compress_video or extract_frame vs generate_gif have well-defined differences in purpose and output.
All tool names follow a consistent verb_noun pattern using lowercase with underscores (get_media_info, extract_audio, trim_video, etc.). There are no mixed conventions, camelCase, or vague verbs, making the toolset highly predictable.
With 16 tools, the set is slightly above the typical 3-15 sweet spot, but each tool serves a distinct common editing need. The count feels justified given the broad scope of video editing, though one or two could be consolidated (e.g., add_text_overlay and add_watermark are both overlays).
The toolset covers core video editing workflows: inspect, trim, merge, convert, transform (resize/crop/rotate), audio adjustment, frames, text/watermark overlays, fades, compression, and GIF export. Missing operations like video stabilization or color grading are minor gaps for a basic editor, and agents can accomplish most tasks without dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Hosted MCP tools for FFmpeg-style video and audio processing through FFMPEG API.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
MCP server for Google Veo AI video generation
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server providing video processing capabilities through FFmpeg, enabling dialog-based local video search, trimming, concatenation, and playback functionalities.8145MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that provides 17 FFmpeg-based tools for video and audio processing, including conversion, compression, and editing. It enables AI assistants to perform complex media tasks like extracting audio, adding watermarks, and merging videos using natural language.1682
- AlicenseNot gradedqualityCmaintenanceAn MCP server that exposes FFmpeg as structured tools for AI-agent-driven video editing, enabling operations like trimming, subtitling, and transcoding via natural language.1681MIT
- AlicenseNot gradedqualityBmaintenanceAn MCP server for programmatic video editing using ffmpeg, enabling draft creation and refinement via natural language.9ISC
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gxtontata/video-editor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server