How to Use the Magic Minutes MCP in LangChain
Build multi-step meeting analysis pipelines with the Magic Minutes MCP Server in LangChain.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Magic Minutes MCP to LangChain
Create your Vinkius account to connect Magic Minutes 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.
Chain Meeting Data in LangChain
The `get_meeting_minutes` tool pulls raw meeting transcripts straight into your LangChain ReAct agents via the MCP standard. You build the pipeline. The agent reads the agenda, identifies the decisions made, and passes that text to the next node in your chain. Tracing happens automatically through LangSmith. You see exactly how many tokens the agent burned while parsing attendees with `list_meeting_attendees`. If a reasoning step fails, you check the logs, adjust the prompt, and run the chain again.
Automate Task Distribution
Calling `create_task` turns an unstructured conversation into tracked action items. Your agent looks at the meeting summary, finds commitments, and fires off tasks. It then uses `list_contacts` to assign the right person to each job. This setup thrives on intermediate results. The output from checking `get_task_details` dictates what the agent does next. You write the logic, and the MCP Server handles the actual data reads and writes.
Monitor Pipeline Health
The `check_api_health` tool gives your application a direct pulse check on the API. Before running a heavy, token-intensive summarization chain, your agent pings the endpoint to confirm connectivity. Active webhooks get mapped out via `list_webhooks`. You track where the data goes after the chain completes. Everything stays observable, and you never guess why a meeting summary failed to reach its destination.
Set up Magic Minutes 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 Magic Minutes 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({
"magic-minutes-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 Magic Minutes 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 Magic Minutes. 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 Magic Minutes MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Magic Minutes MCP today
We host it, we monitor it, we maintain it. You just paste one token.