How to Use the Amplemarket MCP in LangChain
Build sales automation agents in LangChain. Find leads, add them to sequences, and manage your pipeline with code.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Amplemarket MCP to LangChain
Create your Vinkius account to connect Amplemarket 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.
Build Autonomous Sales Funnels
Your LangChain agent can now run your entire top-of-funnel. It starts by using `search_people` to find B2B contacts that match your ideal customer profile. No more manual prospecting. Once it has a list of qualified prospects, the agent decides the next best action. It can use `create_lead_list` to organize them, then pipe those leads directly into a sequence with `add_leads_to_sequence`. This isn't just a script; it's a reasoning loop that manages your sales pipeline.
Dynamic Sequence Management with LangChain
Give your agent the ability to check on your sales engine. It can call `list_sequences` and `list_lead_lists` to get a current snapshot of all your active campaigns and contact lists inside Amplemarket. From there, your agent can make decisions. Maybe it adds a new high-value contact to a specific sequence using `add_leads_to_sequence` or triggers a follow-up with `trigger_custom_signal`. You define the goal, and your LangChain agent figures out the steps.
Traceable, Multi-Step Prospecting
Every action your agent takes is fully observable. When it calls `find_person` to get details on a specific VP of Engineering, you see the exact inputs and outputs in your trace. This makes debugging complex sales chains simple. If a lead isn't added to a list correctly with `add_leads_to_list`, you can pinpoint the failure instantly. You're not just running automation; you're building a reliable, auditable sales system with this MCP Server.
Set up Amplemarket 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 Amplemarket 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({
"amplemarket-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 Amplemarket 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 Amplemarket. 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 Amplemarket MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Amplemarket MCP today
We host it, we monitor it, we maintain it. You just paste one token.