show_video_tool
Extracts and saves specific video segments by defining document name, start time, and end time using the Video RAG MCP Server.
Instructions
Creates and saves a video chunk based on the document name, start time, and end time of the chunk.
Returns a message indicating that the video chunk was created successfully.
Args:
document_name (str): The name of the document the chunk belongs to
start_time (float): The start time of the chunk
end_time (float): The end time of the chunk
Returns:
str: A message indicating that the video chunk was created successfully
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_name | Yes | ||
end_time | Yes | ||
start_time | Yes |
Input Schema (JSON Schema)
{
"properties": {
"document_name": {
"title": "Document Name",
"type": "string"
},
"end_time": {
"title": "End Time",
"type": "number"
},
"start_time": {
"title": "Start Time",
"type": "number"
}
},
"required": [
"document_name",
"start_time",
"end_time"
],
"title": "show_video_toolArguments",
"type": "object"
}