How to Use the Endear Retail CRM MCP in OpenAI Agents SDK
Give your OpenAI Agent direct access to Endear Retail CRM data, with built-in guardrails for safer, production-ready clienteling.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Endear Retail CRM MCP to OpenAI Agents SDK
Create your Vinkius account to connect Endear Retail CRM to OpenAI Agents SDK and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Get Full Customer Context Before Acting
Your agent uses `get_customer_profile` to pull a complete picture of a shopper before it does anything. This isn't just a name and email. It's a full history that gives your agent the context it needs to make smart decisions. With that profile, your agent can then dig deeper using `list_customer_purchase_history` and `list_customer_clienteling_notes`. The OpenAI Agents SDK lets you build guardrails around this data. You can write rules that stop the agent from contacting low-value customers or from sending a message that ignores a recent complaint. It's about automating outreach without making costly, impersonal mistakes.
Automate Task and Team Lookups
Connect this MCP Server and your agent can immediately check on your team's workload. It uses `list_clienteling_tasks` to see all open follow-ups and `list_retail_team_members` to know who's on the floor today. This is how you start building agents that don't just find data, but coordinate work. This becomes powerful when you combine tools. For example, an agent can run `quick_retail_performance_audit`, see that sales are down in a category, then find the right product specialist using `list_retail_team_members`, and finally check their open tasks with `list_clienteling_tasks` to see if they have bandwidth for a new assignment. The agent connects the dots for you.
Find Customers and Products Instantly
Stop digging through your CRM manually. Your agent can use `search_customers_by_name_or_email` to pinpoint a specific person in seconds. It's a direct line into your customer database, ready for any conversational query. The agent gets the ID and can immediately start pulling their history. It works for products, too. An agent can call `list_retail_products` to check inventory or find details about a specific item. This is useful for building internal tools. A sales associate can ask the agent, "Do we have this jacket in a medium?" and get an immediate, accurate answer without leaving their chat client.
Set up Endear Retail CRM MCP in OpenAI Agents SDK
Prerequisites
- Python 3.10+ installed
-
openai-agentspackage (pip install openai-agents) - Active Vinkius subscription with a valid endpoint token
- 1
Install the SDK
Run
pip install openai-agentsto install the OpenAI Agents SDK. The MCP integration is built-in — no extra dependencies needed. - 2
Connect via SSE transport
Use
MCPServerSsewith your Vinkius endpoint URL. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. The SDK auto-discovers all Endear Retail CRM tools at runtime. - 3
Create your Agent
Pass the MCP to
Agent(mcp_servers=[server]). The agent receives Endear Retail CRM tools as native definitions — JSON schemas resolve automatically. - 4
Run the agent
Call
Runner.run(agent, prompt)to execute. The agent invokes the appropriate Endear Retail CRM tools and returns structured results. Copy the full example on the right to get started.
import asyncio
from agents import Agent, Runner
from agents.mcp import MCPServerSse
async def main():
async with MCPServerSse(
url="https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp"
) as server:
agent = Agent(
name="Endear Retail CRM Agent",
instructions="You have access to Endear Retail CRM tools.",
mcp_servers=[server],
)
result = await Runner.run(agent, "List recent transactions")
print(result.final_output)
asyncio.run(main()) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Endear Retail 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 Endear Retail CRM MCP in OpenAI Agents SDK
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Endear Retail CRM MCP today
We host it, we monitor it, we maintain it. You just paste one token.