AlgoDriven MCP server.
Connect your AlgoDriven account to Claude, ChatGPT, Cursor, Groq or any AI assistant that supports the Model Context Protocol — then ask about your drives and bookings in plain language. Read-only, signed in as you.
Connect your client.
The server URL is https://mcp.algodriven.io/mcp. Adding it opens your browser to sign in with your AlgoDriven account — there are no keys or secrets to paste into a config file.
Works in the Claude web app and the Claude desktop app.
- Open Settings → Connectors.
- Click Add custom connector.
- Name it
AlgoDrivenand paste the server URL below. - Click Connect. Claude opens a browser window — sign in with your AlgoDriven account and approve access.
- In any chat, enable AlgoDriven from the connectors menu and ask away.
https://mcp.algodriven.io/mcp
Add the server once, then authenticate from inside Claude Code.
- Run the command below in your terminal.
- Start Claude Code and run
/mcp, then choose algodriven → Authenticate. Your browser opens to sign in. - Check it worked with
claude mcp list.
# add the server (user scope — available in every project) claude mcp add --transport http --scope user algodriven https://mcp.algodriven.io/mcp # then, inside Claude Code: /mcp
Custom MCP connectors require developer mode on a paid ChatGPT plan.
- Open Settings → Connectors → Advanced and turn on Developer mode.
- Back in Connectors, choose Create and paste the server URL below.
- Set authentication to OAuth, then click Connect and sign in with your AlgoDriven account.
- In a new chat, enable AlgoDriven from the connectors list.
https://mcp.algodriven.io/mcp
One click if you have Cursor installed — or add the server manually.
- Add to Cursor — Cursor opens and prompts you to install the server. Or add it by hand: open Settings → MCP (or edit
~/.cursor/mcp.json) and add the config below. - Click Needs login next to algodriven (or just start using it). Your browser opens — sign in with your AlgoDriven account and approve access.
- Ask away in chat — Cursor picks up the AlgoDriven tools automatically.
{
"mcpServers": {
"algodriven": {
"url": "https://mcp.algodriven.io/mcp"
}
}
}
Groq is for developers building their own agents: GroqCloud's OpenAI-compatible Responses API calls the AlgoDriven MCP server for you at inference time — Groq discovers the tools, runs the calls and feeds the results back to the model. There's no end-user connector UI, so authentication uses an access token in a header instead of a browser sign-in.
- Get an AlgoDriven access token — contact us or ask your account manager, and we'll issue one for your integration.
- Add the AlgoDriven server to the
toolsarray of a Responses API request, as below. - That's it — Groq handles tool discovery and execution. See Groq's remote MCP docs for models and options.
curl https://api.groq.com/openai/v1/responses \ -H "Authorization: Bearer $GROQ_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "openai/gpt-oss-120b", "input": "How many test drives did we do last week?", "tools": [{ "type": "mcp", "server_label": "algodriven", "server_url": "https://mcp.algodriven.io/mcp", "headers": { "Authorization": "Bearer YOUR_ALGODRIVEN_TOKEN" }, "require_approval": "never" }] }'
Any client that supports remote MCP servers over HTTP with OAuth — VS Code, Windsurf, Zed and others. Most read a config file in this shape:
{
"mcpServers": {
"algodriven": {
"type": "http",
"url": "https://mcp.algodriven.io/mcp"
}
}
}
The exact file location and key name vary by client — check your client's MCP documentation. On first use it will open a browser for you to sign in with your AlgoDriven account.
Tools exposed.
| Tool | What it returns | Access |
|---|---|---|
Get Drivesget_drives |
Drive records for your dealership in a date range: status, type, start/end times, vehicle (make/model/year/VIN/stock, damage flags), odometer & fuel, salesperson, driver year of birth, excess-reduction, and a dashboard link. Filter by drive type or by plate/rego. | Read-only |
Get Bookingsget_bookings |
Booking records in a date range: status, source, drive type, when the booking was made, and the appointment date. Filter by status, source, drive type, and which date the range bounds. | Read-only |
Your login, your permissions.
When you connect, the specific records you ask for are shared with the provider of that assistant so it can generate your response. See our privacy policy and terms of service for details.
Not an AlgoDriven customer yet?
The MCP server is available to DriveExpert customers. See the product first, or talk to us about access.
Explore DriveExpert