CareMan MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CareMan MCPShow duty roster for planning group 'Station A' in October 2024"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@jalibu/careman-mcp
Read-only MCP server for CareMan Dienstplan (opta data / SIEDA).
Exposes the CareMan REST API as MCP tools so LLMs can query duty rosters, shift requests, vacant duties, and shift swaps.
⚠️ Disclaimer
This is an unofficial, community-developed MCP server. It is not affiliated with, endorsed by, or in any way connected to CareMan or any other company behind the CareMan product. All product and company names are trademarks of their respective owners.
Use at your own risk. This project reverse-engineers an undocumented private API. It may break at any time without notice. The author accepts no liability for any damage, data loss, account suspension, or other consequences arising from its use.
Data privacy warning. CareMan contains sensitive personal and operational data (duty rosters, employee information, etc.). Whenever you use an MCP client that connects to a cloud-hosted AI model (e.g. Claude Desktop → Anthropic, ChatGPT, Gemini, …), your CareMan data will be transmitted to and processed on the AI provider's servers. This is likely incompatible with your organisation's data protection obligations (GDPR / DSGVO). The only way to keep data under your full control is to use a locally running, self-hosted AI model (e.g. Open WebUI + Ollama). You are solely responsible for compliance with applicable data protection laws.
Setup
Open WebUI + Ollama ✅ Recommended (privacy-friendly)
Open WebUI with a locally running Ollama model keeps all data on your own machine — nothing is sent to external servers.
Prerequisites: Open WebUI and Ollama must already be running locally.
In Open WebUI, go to Settings → Tools → MCP Servers (or Admin Panel → Settings → Tools).
Add a new MCP server entry:
Name:
caremanCommand:
npxArgs:
-y @jalibu/careman-mcp@latestEnvironment variables:
CAREMAN_URL=https://careman.mycompany.com CAREMAN_USERNAME=your-username CAREMAN_PASSWORD=your-password
Save and reload. The CareMan tools are now available in your local chat.
Supported Ollama models with good tool-calling ability:
qwen2.5:14b,llama3.1:8b,mistral-nemo.
Claude Desktop ⚠️ Cloud — data leaves your network
Privacy notice: Claude Desktop sends your conversations — including all data returned by CareMan — to Anthropic's cloud servers for inference. Only use this setup if you have reviewed and accepted the implications for your organisation's data protection policy.
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"careman": {
"command": "npx",
"args": ["-y", "@jalibu/careman-mcp@latest"],
"env": {
"CAREMAN_URL": "https://careman.mycompany.com",
"CAREMAN_USERNAME": "your-username",
"CAREMAN_PASSWORD": "your-password"
}
}
}
}Restart Claude Desktop. The tools become available immediately.
Environment variables
Variable | Required | Description |
| ✓ | Base URL of your CareMan instance |
| ✓ | Your CareMan login name |
| ✓ | Your CareMan password |
Related MCP server: webcal-mcp
Tools
get_planungsgruppen
Lists all planning groups available for a given month.
Call this first to discover group IDs for get_abteilungsdienstplan.
get_planungsgruppen(year, month)
→ [{ name: "Group A", id: 100 }, { name: "Group B", id: 101 }, ...]get_abteilungsdienstplan
Returns the full team duty roster for one planning group and month — every employee with their assigned duty codes per day.
get_abteilungsdienstplan(year, month, planningGroupId, planningGroupName?)
→ { data: { data: [{ item1: { name, id }, item2: { data: [...] } }], legendDuties, ... } }Each day entry in item2.data:
day.date— UTC timestamp of local Berlin midnightday.bankHolidayName— non-empty string if public holidayshortName— duty code, e.g."H31T","H31N","H51T"
Days without an assignment are omitted (sparse array).
get_rosters_preload
Returns personal roster data for one month — covers three areas in a single API call:
Einsatzwünsche (shift requests) — in rosterUrlaubEinsatzwunsch.data.data[0].item2.data[]:
einsatzwunsch: trueflags days with a shift requestshortNameSollplan— requested duty codegenehmigt / beantragt— approval status
Vakante Dienste (vacant duties) — in vacantDutiesOccupied.data.duties[] and vacantDutiesAssumed.data.duties[]:
idVacantDuty— use withget_vakante_duty_detailsduty,nameWorkstation,atDate,state,comment
Diensttausch (shift swaps) — in swapDutyOffersOffered.data.offers[] (incoming) and swapDutyOffersOwn.data.offers[] (own):
offerer,acceptor,dutiesOfferer,dutiesAcceptorworkstationsOfferer,planninggroupsOffererstate,comment
get_rosters_preload(year, month)
→ { rosterUrlaubEinsatzwunsch, swapDutyOffersOffered, swapDutyOffersOwn,
vacantDutiesOccupied, vacantDutiesAssumed, fehlzeiten }get_vakante_duty_details
Returns full shift details for a single vacant duty entry.
get_vakante_duty_details(idVacantDuty)
→ { entries: [{ shortName, nameWorkplace, from, to, stringDuration, ... }] }Architecture
LLM
│ MCP (stdio)
▼
CareMan MCP Server
├─ Session Manager (auto-login, token cache, employeeId)
├─ get_planungsgruppen → POST /api/-/vacant-duties/possible-planninggroups
├─ get_abteilungsdienstplan → POST /api/-/team-duty/roster/{employeeId}
├─ get_rosters_preload → POST /api/-/rosters/preload
└─ get_vakante_duty_details → GET /api/-/vacant-duties/roster-details-id/{id}Notes
Undocumented API. All endpoints were reverse-engineered from the minified CareMan JavaScript bundle and verified via browser network inspection. They may change with CareMan updates. If a tool starts returning errors after a CareMan upgrade, compare the request/response format in browser DevTools against the code in src/api.js.
Login format. The login request body uses { item1: username, item2: password } — a generic tuple wrapper pattern used throughout the CareMan codebase. If login fails, verify this against a live browser login via DevTools → Network → POST /api/-/auth/login.
Token lifetime. JWTs expire after roughly 8 hours. The server tracks expiry and re-logs in automatically.
Read-only. No tool submits, modifies, or deletes data. POST requests are used only where the API requires them for data retrieval (a common pattern in this codebase).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jalibu/careman-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server