How to Use the ContentGroove MCP in LangChain
Feed video URLs to LangChain agents and watch this MCP Server generate, trace, and organize video clips automatically.
Works with every AI agent you already use
…and any MCP-compatible client
Connect ContentGroove MCP to LangChain
Create your Vinkius account to connect ContentGroove to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Chained Video Splicing Pipelines
Your LangChain run initiates video imports using `create_media_from_url` to pull raw footage directly into your pipeline. Once finished, the chain automatically passes the resulting ID to `get_media_clips` to extract the best moments. Every single step, tool payload, and latency metric gets traced in LangSmith so you can debug why a clip extraction failed.
Multi-Step Highlight Curation with LangChain
Your LangChain agent scans your entire highlight library using `list_all_clips` to make executive curation decisions. By combining this MCP Server with LLM reasoning, the agent filters out low-quality cuts before they ever hit your social queue. You write the logic once, and your chain handles the heavy lifting of video curation.
On-Demand Video Upload Workflows
Your LangChain agent generates secure, temporary destination links using `create_direct_upload` for on-demand video ingestion. After the upload completes, the agent tracks the project state using `get_media_details` to confirm the video is ready for clipping. It keeps your media pipelines moving without manual intervention or hardcoded upload scripts.
Set up ContentGroove MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes ContentGroove tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"contentgroove-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent ContentGroove transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by ContentGroove. 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 ContentGroove MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the ContentGroove MCP today
We host it, we monitor it, we maintain it. You just paste one token.