How to Use the Craftboxx MCP in LlamaIndex
Turn your live Craftboxx data into a searchable knowledge base with LlamaIndex.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Craftboxx MCP to LlamaIndex
Create your Vinkius account to connect Craftboxx 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 Your Entire Operation
LlamaIndex doesn't just call a tool once. It calls it, gets the data, and adds that data to a vector index. Use `list_orders` and `list_customers` to build a queryable history of all your jobs and who they were for. Now you can ask semantic questions about your business. Instead of just fetching a single order, you can ask, 'Which customers in the north-end had plumbing work done last quarter?' LlamaIndex finds the relevant data from its index of past tool calls.
Get Answers Grounded in Real Data
When your agent answers a question, it cites its sources—the actual data from your Craftboxx account. Ask 'What's the status of order #5021?' and the agent will use `get_order_details` and show you the real-time data it found, not a guess. This is critical for business operations. You can build a QA bot for your office staff that can answer questions about inventory (`list_materials`) or vehicle status (`list_vehicles_resources`) with confidence. Every answer is tied directly to an API call result.
A Live Data Source for Your LlamaIndex Agent
This MCP Server gives your LlamaIndex application a direct line to your Craftboxx account. The tools let you ingest data about everything from appointments (`list_appointments`) to team members (`list_employees`). This keeps your knowledge base fresh. You're building a system that learns from your operations. The more you use the tools to query your business, the smarter your index becomes. This MCP Server turns your day-to-day Craftboxx data into a long-term, searchable asset.
Set up Craftboxx 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 Craftboxx 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 Craftboxx tools.",
)
response = await agent.run("List recent Craftboxx data") Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Craftboxx. 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 Craftboxx MCP in LlamaIndex
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Craftboxx MCP today
We host it, we monitor it, we maintain it. You just paste one token.