How to Use the Brilliant Made MCP in LlamaIndex
Index your Brilliant Made swag inventory and order history directly into LlamaIndex vector stores for semantic search.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Brilliant Made MCP to LlamaIndex
Create your Vinkius account to connect Brilliant Made 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 swag data into LlamaIndex
This MCP Server turns your physical inventory and order logs into searchable LlamaIndex vector indexes. Your LlamaIndex agent runs `list_products` and `get_inventory_status` to pull raw Brilliant Made swag details, which are then indexed for instant retrieval. Instead of hardcoding API queries, your LlamaIndex agent performs semantic searches over your actual Brilliant Made catalog. This lets users search for physical Brilliant Made items using natural language queries rather than exact SKU matches in LlamaIndex.
Ground RAG applications in real order data
This MCP toolset provides the real-time ground truth your LlamaIndex RAG pipelines need to answer customer support queries accurately. Your LlamaIndex system calls `get_order` and `list_fulfillment_orders` to fetch the latest shipping metrics directly from the Brilliant Made warehouse. By feeding this live Brilliant Made data into your LlamaIndex query engine, you eliminate hallucinated shipping dates. Your LlamaIndex agent answers questions using actual logistics data, keeping your Brilliant Made support responses factual.
Generate gift cards based on index queries
This integration connects your LlamaIndex search indexes directly to promotional actions in Brilliant Made. Your LlamaIndex agent can query past order histories, identify high-value accounts, and run `create_gift_card` to reward them with Brilliant Made credits. You can list existing promotions with `list_gift_cards` to ensure your LlamaIndex pipeline does not double-allocate funds. The tool execution happens dynamically as your LlamaIndex query engine parses user requests and matches them against Brilliant Made business rules.
Set up Brilliant Made 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 Brilliant Made 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 Brilliant Made tools.",
)
response = await agent.run("List recent Brilliant Made data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Brilliant Made. 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 Brilliant Made MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Brilliant Made MCP today
We host it, we monitor it, we maintain it. You just paste one token.