INDIVIDUAL MCP TOOL
studio_create_project
Creates an anonymous temporary project and returns an agent token plus the editable Studio link for the user.
LIVE ENDPOINT
https://www.animatemytravel.com/api/mcp
Connect to this endpoint to inspect the live schema for studio_create_project and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.animatemytravel-studio]
url = "https://www.animatemytravel.com/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"animatemytravel-studio": {
"type": "http",
"url": "https://www.animatemytravel.com/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: animatemytravel-studio
Remote MCP URL: https://www.animatemytravel.com/api/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"animatemytravel-studio": {
"url": "https://www.animatemytravel.com/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"animatemytravel-studio": {
"type": "http",
"url": "https://www.animatemytravel.com/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "animatemytravel-studio",
"transport": "streamable-http",
"url": "https://www.animatemytravel.com/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
studio_join_project— Consumes a five-minute one-time pairing code shown by Studio.studio_list_capabilities— Lists the live action registry.studio_describe_capabilities— Returns schemas and examples for one or more Studio actions.studio_get_project_summary— Reads the current revision and a compact timeline summary.studio_apply_actions— Atomically applies one or more registered actions.studio_validate_project— Checks entity, track, clip, timing, and reference integrity.studio_request_preview— Asks an open Studio browser to render a frame locally.studio_request_export— Asks an open Studio browser to render and download the video locally.