Connect Claude to Platform Data (MCP)
Let Claude Code or Claude Desktop read live platform data (shifts, staff meals, pricing, and more) through the MCP server. A one-time setup that your Claude does most of.
Overview
The platform runs an MCP server β a secure bridge that lets your Claude (Claude Code or Claude Desktop) read live data from the platform: shifts, staff meals, recruiting/HR, pricing, and more. Once it is connected, you can simply ask your Claude things like "show me this month's shifts" and it pulls the real numbers.
This is a one-time setup, and most of it can be done by your Claude. You only do a couple of things by hand β mainly: get a token (usually by asking an admin), and (for Claude Desktop) restart the app.
For most people the MCP is read-only. Changing data (e.g. editing shifts or meals) is limited to admins.
Throughout this page:
- π€ = a step you can hand to your Claude (copy the prompt).
- π€ = a step only you can do by hand.
Before You Start
| What | Why | Who does it |
|---|---|---|
| MCP access (most people don't have it by default) | To get a token | π€ ask an admin β see Step 1 |
| Claude Code (recommended) or Claude Desktop | The client that connects | π€ you |
| Node.js (Claude Desktop only) | Runs the small connection bridge | π€ your Claude can check |
If you plan to use Claude Desktop, check Node.js first:
Step 1 β Get Access (ask an Admin) π€
By default, most people don't have access to the MCP token page, so the first step is usually to ask an administrator. There are two ways:
Option 1 (easiest) β ask an admin to issue a token for you.
An admin can create a token on your behalf and send you the mcp_β¦ string. Tell them what you need it for (which data), so they can pick the right scopes. Treat the token like a password β it's shown only once.
Option 2 β ask an admin to grant you MCP access, then issue it yourself. Once an admin grants your account the "mcp" app, open https://mcp.algoritmigroup.com/ β My MCP Tokens β Issue new token, set a label and the scopes you need, then copy the token (shown only once).
Scopes = what your Claude may access. For reading, pick the read scopes you need (e.g. shifts, staff meals). Write access is admin-only. Scopes can be changed later without re-issuing the token.
Who to ask β these staff are current administrators:
Loading administratorsβ¦
Whichever way you get it, keep the token private β never paste it into shared chats or commit it to code.
Step 2 β Connect
Use the client you actually work in. Claude Code is the simplest.
Option A β Claude Code (recommended)
Paste your token into this prompt and hand it to Claude Code:
Or run it yourself in a terminal:
claude mcp add --transport http --scope user algoritmi-vibe https://mcp.algoritmigroup.com/api/mcp --header "Authorization: Bearer mcp_YOUR_TOKEN_HERE"Then check it worked: in Claude Code, type /mcp. You should see algoritmi-vibe connected, with a list of tools.
Option B β Claude Desktop
Claude Desktop needs a small bridge (mcp-remote). The easiest way is to let Claude Code write the config file for you:
Then, by hand: fully quit and reopen Claude Desktop π€ so it loads the new config. In the chat box, open the tools (slider) menu β the algoritmi-vibe tools should appear.
Manual fallback β the exact config to paste yourself:
{
"mcpServers": {
"algoritmi-vibe": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.algoritmigroup.com/api/mcp", "--header", "Authorization:${AUTH_HEADER}"],
"env": { "AUTH_HEADER": "Bearer mcp_YOUR_TOKEN_HERE" }
}
}
}Tip: the same ready-to-copy config is shown on the MCP site's home page under "Claude Desktop / Cursor config".
Step 3 β See What You Can Access
What you can do depends on the scopes on your token, which differ from person to person. Rather than guessing, ask your Claude to tell you β using real data:
Your Claude will list the tools your token unlocked and show a real example. If it reports no matching tools or a permission error, see the troubleshooting table below.
If Something Doesn't Work
| Symptom | What it means / how to fix |
|---|---|
| Claude can't connect, or authentication fails (401) | The token is wrong, expired, or revoked. Issue a fresh one (Step 1) and make sure you used the full mcp_β¦ value with Bearer in front. |
A tool is refused with insufficient_scope | Your token doesn't include that area. Go back to https://mcp.algoritmigroup.com/, find your token in the list, click Edit scopes, and add what you need (write access is admin-only). |
| No tools appear (Claude Desktop) | Node.js is missing, or Claude Desktop wasn't fully restarted. Check Node.js, then fully quit and reopen the app. |
| You can't open the token page / can't issue a token | Your account isn't granted the "mcp" app yet. Ask an admin (or ask them to issue a token for you). |
Who Does What
| Step | Done by |
|---|---|
| Check Node.js (Desktop) | π€ your Claude |
| Get access / a token | π€ you β ask an admin (Step 1) |
| Add the server (Claude Code) | π€ your Claude β or one command |
| Write the Claude Desktop config | π€ your Claude Code |
| Restart Claude Desktop | π€ you |
| See what you can access | π€ your Claude |
Quiz
You don't have access to the MCP token page. What's the first step?