get_api_infoAnswer
Get EchoWave API and MCP server endpoints so an agent can create, edit and render videos programmatically without the UI.
View tool JSON
{
"name": "get_api_info",
"kind": "answer",
"impl": "imperative",
"description": "Get EchoWave API and MCP server endpoints so an agent can create, edit and render videos programmatically without the UI.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}get_page_infoAnswer
Get structured information about the current EchoWave page: title, description, canonical URL, language, and how to start editing from here.
View tool JSON
{
"name": "get_page_info",
"kind": "answer",
"impl": "imperative",
"description": "Get structured information about the current EchoWave page: title, description, canonical URL, language, and how to start editing from here.",
"inputSchema": {
"type": "object",
"properties": {},
"additionalProperties": false
}
}open_toolAction
Open a specific EchoWave tool page by slug, e.g. add-text-to-video, add-subtitles, crop-video, video-compressor.
View tool JSON
{
"name": "open_tool",
"kind": "act",
"impl": "imperative",
"description": "Open a specific EchoWave tool page by slug, e.g. add-text-to-video, add-subtitles, crop-video, video-compressor.",
"inputSchema": {
"type": "object",
"properties": {
"tool": {
"type": "string",
"description": "Tool slug, e.g. \"add-subtitles\" or \"video-compressor\"."
}
},
"required": [
"tool"
],
"additionalProperties": false
}
}search_toolsAnswer
Search EchoWave video tools and how-to pages for a task, e.g. "add subtitles" or "compress video".
View tool JSON
{
"name": "search_tools",
"kind": "answer",
"impl": "imperative",
"description": "Search EchoWave video tools and how-to pages for a task, e.g. \"add subtitles\" or \"compress video\".",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "What the user wants to do, e.g. \"add subtitles\"."
}
},
"required": [
"query"
],
"additionalProperties": false
}
}start_video_projectAction
Open the EchoWave editor to start a new video project. Optionally pass a guided onboarding flow such as add-text, subtitles, voice-over, audio-visual or overlay.
View tool JSON
{
"name": "start_video_project",
"kind": "act",
"impl": "imperative",
"description": "Open the EchoWave editor to start a new video project. Optionally pass a guided onboarding flow such as add-text, subtitles, voice-over, audio-visual or overlay.",
"inputSchema": {
"type": "object",
"properties": {
"flow": {
"type": "string",
"description": "Optional guided onboarding flow id, e.g. \"subtitles\", \"add-text\", \"voice-over\", \"audio-visual\", \"overlay\"."
}
},
"additionalProperties": false
}
}