How to Use the Gem MCP in LangChain
Build multi-step recruiting workflows with LangChain agents that automatically source candidates and trigger Gem outreach sequences.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Gem MCP to LangChain
Create your Vinkius account to connect Gem 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.
Sourcing workflows with LangChain
Your ReAct agents need to pull candidate data and move it into your CRM without human intervention. You give them the `create_crm_candidate` tool via this MCP integration. They take raw profiles from external sources and immediately log them into your talent pool. The real utility comes from chaining these actions together. A single LangChain pipeline parses a resume, checks for existing records using `list_candidates`, and then maps the new profile to specific roles using `list_talent_projects`. You define the logic, and the agent executes the sequence.
Automated candidate engagement
Passive talent ignores bad cold emails. You build pipelines that evaluate a candidate's background and automatically trigger the right messaging via `list_outreach_sequences` through the MCP protocol. The agent matches the candidate's seniority to the correct template. LangSmith tracing gives you complete visibility into these automated touches. You see exactly which sequence the agent selected and verify the payload sent to `update_crm_candidate` before it actually fires off the email. You control the exact conditions for outreach.
Gem MCP Server connection
Setting up the integration takes just a few lines of code. You initialize the `verify_api_connection` tool to ensure your auth tokens work before deploying the application to production. Broken tokens fail early instead of failing silently. From there, your agents have full access to internal context. They pull team structures with `list_recruiting_team` and custom metadata via `list_crm_custom_fields`. They use this data to format their API calls exactly how your recruiters expect.
Set up Gem 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 Gem 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({
"gem-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 Gem 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 Gem. 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 Gem MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Gem MCP today
We host it, we monitor it, we maintain it. You just paste one token.