How to Use the RenderMe MCP in LlamaIndex
Index RenderMe video assets and templates into your LlamaIndex vector store for context-rich generation.
Works with every AI agent you already use
…and any MCP-compatible client
Connect RenderMe MCP to LlamaIndex
Create your Vinkius account to connect RenderMe to LlamaIndex — we handle the hosting, security, and runtime updates so you don't have to. No server setup required.
Key Capabilities
Index your video assets for semantic search
The `list_uploaded_assets` tool pulls your entire media library directly into LlamaIndex to build a searchable knowledge index. Your agent queries this local index to find specific images or video clips instead of scanning raw directories every time. By combining folder metadata from `list_asset_folders` with your vector store, the agent locates assets using natural language. This turns a messy pile of media files into an organized, queryable asset library that feeds directly into your rendering steps.
Ground your video generation in actual MCP Server templates
The `list_video_templates` tool exposes your deployment configurations so LlamaIndex can index your available video designs. Your agent searches this MCP index to select the best layout based on the user's intent. Once selected, the agent calls `get_template_details` to retrieve the exact schema requirements. This grounding prevents the agent from hallucinating variable names when constructing the payload for `create_video_render_job`.
Track rendering history and account metrics
The `list_recent_render_jobs` tool retrieves your past video runs to feed historical render data into your LlamaIndex query engine. This lets you ask questions about past video runs and get answers grounded in real execution logs. You can also query `get_account_render_stats` to track your monthly usage patterns directly through your LLM. The agent parses these stats alongside your active projects from `list_video_projects` to optimize your rendering budget.
Set up RenderMe MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all RenderMe MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to RenderMe tools.",
)
response = await agent.run("List recent RenderMe data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by RenderMe. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about RenderMe MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the RenderMe MCP today
We host it, we monitor it, we maintain it. You just paste one token.