How to Use the Enrich CRM MCP in LlamaIndex
Turn CRM data into a queryable knowledge base with LlamaIndex and live enrichment tools.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Enrich CRM MCP to LlamaIndex
Create your Vinkius account to connect Enrich CRM to LlamaIndex and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Index Live API Data
LlamaIndex turns the output from Enrich CRM tools into a searchable index. When your agent calls `enrich_company` to get technographics and funding data, that information doesn't just get used once and then disappear. It's indexed. Later, you can ask natural language questions like, "Show me all the companies we've enriched that use AWS and raised a Series B." LlamaIndex retrieves the answer from the data it indexed from previous `enrich_company` calls. Your agent's work builds a permanent asset.
Ground Your RAG with Verified Data
Stop your RAG application from making things up about company details. By using the Enrich CRM tools, your agent's responses are grounded in facts pulled from `enrich_person` and `enrich_company`. It's the difference between guessing and knowing. When you ask about a prospect, the LlamaIndex agent can retrieve both your internal notes and fresh data from this MCP Server in a single query. This creates a complete picture, mixing your private knowledge with public, verified data.
Build Smart LlamaIndex Query Engines
Use the `McpToolSpec` to load all the Enrich CRM tools into your LlamaIndex application. You can then build query engines that intelligently decide when to search the index versus when to make a live API call to `find_email` or `find_phone`. This gives you the best of both worlds: the speed of a local index for known data, and the freshness of live API calls when you need the absolute latest contact information. Your agent isn't limited to stale information.
Set up Enrich CRM MCP in LlamaIndex
Prerequisites
- Python 3.10+ installed
-
llama-index-tools-mcppackage - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install llama-index-tools-mcp llama-index-llms-openai. The MCP tools package providesBasicMCPClientandMcpToolSpec. - 2
Connect with BasicMCPClient
Point
BasicMCPClientto your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. Supports SSE and Streamable HTTP transports. - 3
Convert to LlamaIndex tools
Call
mcp_tool_spec.to_tool_list_async()to convert all Enrich CRM MCP tools into nativeFunctionToolobjects that any LlamaIndex agent can use. - 4
Run with any LLM
Create a
FunctionAgentwith the tools and your preferred LLM. SwapOpenAIforAnthropic,Gemini, or any LlamaIndex-supported provider.
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI
# Connect to the MCP
mcp_client = BasicMCPClient(
"https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
)
mcp_tool_spec = McpToolSpec(client=mcp_client)
# Convert MCP tools to LlamaIndex tools
tools = await mcp_tool_spec.to_tool_list_async()
# Create and run the agent
agent = FunctionAgent(
tools=tools,
llm=OpenAI(model="gpt-4o"),
system_prompt="You have access to Enrich CRM tools.",
)
response = await agent.run("List recent Enrich CRM data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Enrich CRM. 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 Enrich CRM MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Enrich CRM MCP today
We host it, we monitor it, we maintain it. You just paste one token.