How to Use the Campaign Monitor MCP in LangChain
Build LangChain agents that update subscriber lists and pull campaign performance data on the fly.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Campaign Monitor MCP to LangChain
Create your Vinkius account to connect Campaign Monitor 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 Campaign Monitor updates with LangChain agents
The `add_subscriber` tool lets your LangChain agent add new leads directly to your Campaign Monitor lists during active conversation runs. LangChain passes user inputs straight to this MCP endpoint, letting you register Campaign Monitor subscribers without writing custom API integration code. You track the entire sequence in LangSmith to see exactly when and how the Campaign Monitor contact record was created. This LangSmith visibility ensures you catch Campaign Monitor payload errors before they break your live production chains.
Run multi-step Campaign Monitor analytics reasoning
Feeding raw open and click rates from Campaign Monitor campaigns directly into your LangChain ReAct agent is handled by the `get_campaign_analytics` tool. Your LangChain agent uses this performance data to decide whether to trigger a follow-up list pull or flag low-performing Campaign Monitor campaigns. By combining this tool with `list_sent_campaigns`, your LangChain pipeline evaluates recent Campaign Monitor history and drafts improvements in a single run. You do not have to manually export Campaign Monitor CSVs or write glue code to connect your LangChain LLM to your marketing metrics.
Audit subscriber list health through MCP Server tools
Pulling active subscriber counts and bounce rates from Campaign Monitor into your LangChain workflow is driven by the `get_list_statistics` tool. Your LangChain agent checks these numbers to determine if a specific Campaign Monitor segment needs cleaning before your next major broadcast. Pairing this with `list_subscriber_lists` allows the LangChain chain to scan all Campaign Monitor client accounts automatically. LangChain coordinates these Campaign Monitor tool calls sequentially, giving your agent the exact context needed to make list hygiene decisions.
Set up Campaign Monitor 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 Campaign Monitor 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({
"campaign-monitor-alternative-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 Campaign Monitor 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 Campaign Monitor. 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 Campaign Monitor MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Campaign Monitor MCP today
We host it, we monitor it, we maintain it. You just paste one token.