crewmeister-api
Click on "Deploy 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., "@crewmeister-apilist the members in my Crewmeister account"
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.
Crewmeister API
Community Python SDK, CLI and local MCP server for the Crewmeister API. Independent project, not an official Crewmeister product. Apache-2.0 licensed.
Requires Python 3.14+ and uv; tested on CPython 3.14.
The base SDK has no runtime dependencies. Optional extras add CLI .env support
(cli) and the STDIO MCP server (mcp).
Supported areas
Platform, time tracking, absence, shift planning, salary export, integration, audit and notifications. Available reads, writes, batches, tasks and jobs are listed in the offline catalog; binary downloads use the SDK or CLI.
Detailed usage · Agent skill · Contributing · Security
Related MCP server: mcp-crm
Quick start
Clone and install the checkout, then inspect the catalog without credentials:
git clone https://github.com/BelStark/crewmeister-api-python.git
cd crewmeister-api-python
uv sync --locked --dev --all-extras
uv run --no-sync crewmeister describe --json
cp .env.template .envEdit .env: explicitly choose CREWMEISTER_API_BASE_URL and enable either
CREWMEISTER_API_BEARER_TOKEN or CREWMEISTER_API_USERNAME plus
CREWMEISTER_API_PASSWORD. The template points to stage, which is not an
isolated sandbox. Keep credentials and employee data out of Git.
The examples below make real requests using your own authorized Crewmeister access. Only catalog, help and version commands are offline. Configuration files are loaded only when explicitly requested; process environment variables take precedence. See configuration and installation options.
CLI
Read one page of members:
uv run --no-sync crewmeister --env-file .env platform members list --page 0 --page-size 10For every operation, inspect its requirements and command options first:
uv run --no-sync crewmeister describe time-tracking durations --json
uv run --no-sync crewmeister time-tracking durations list --helpdescribe includes routes, filters, payload schemas, constraints and contract
evidence. Use documented fields; do not infer missing schemas.
Explicit --page returns one page; ordinary lists stream an array.
Check the exit code before accepting output as complete.
Python SDK
With the extras installed above, explicitly load the same .env:
from crewmeister_api import CrewmeisterApiClient, CrewmeisterApiConfig, PlatformApiService
from crewmeister_api.configuration import load_env_file
config = CrewmeisterApiConfig.from_env(load_env_file(".env"))
client = CrewmeisterApiClient(config)
members = PlatformApiService(client).get_resource_page("members", page=0, page_size=10)For process environment variables only, use CrewmeisterApiConfig.from_env();
this needs no extra. SDK responses are raw and may contain sensitive data.
See SDK contracts for pagination, errors and custom transports.
MCP for agents
Configure your MCP host to launch a local STDIO server from this checkout:
uv run --directory /absolute/path/to/crewmeister-api-python --no-sync crewmeister-mcp --env-file /absolute/path/to/.envSet the host's command to uv and pass the remaining tokens as arguments.
CREWMEISTER_API_BASE_URL is mandatory and must be a canonical HTTPS origin
without a path, query or credentials. Startup and tool discovery do not log in.
Start with crewmeister_describe, then select a registered category and endpoint.
MCP covers list, get, create, batch, patch, replace, delete, task and job operations;
downloads remain SDK/CLI-only. Read the agent skill
before operating on data. MCP details and plugin packaging
cover tool inputs, outcomes and host setup.
Safe use
CLI writes require
--yes; MCP writes requireconfirm=trueand host authorization. Neither validates the business intent or restricts the affected employees.CLI and MCP redact known sensitive fields, but output can still contain employee data. SDK output is unredacted.
No automatic retries, write polling or rollback. An accepted job is not a completed operation.
The default transport rejects redirects. Unknown outcomes must be reconciled before retrying.
Jobs, downloads, iCal and scoped salary generation have additional requirements; inspect them before use.
Development
Mandatory offline validation
docker build --target test -t crewmeister-api:test .
docker build --target sdk-artifacts --output type=local,dest=dist/sdk .These run lint, formatting, types, unit tests, MCP handshake, plugin generation
and installed-package checks. Tests run without networking after dependency
preparation. Never pass host credentials, .env files or sockets; no live
Crewmeister requests are permitted during development, including on stage.
See CONTRIBUTING.md and artifact verification.
Known API limitations
Offline tests verify client behavior, not every provider payload, permission or business transition. Most job routes are guideline-derived, not live-verified. Complete iCal job output, salary-file availability and unverified async flows must not be treated as confirmed contracts. The catalog records these distinctions; see the usage reference.
License and contributions
Maintained by BelStark. Contributions are welcome under Apache-2.0 with DCO sign-off; forks and commercial use are permitted subject to the license. See NOTICE; third-party material retains its own terms.
Provided without additional warranty, support or maintenance commitments, subject to applicable law and Apache-2.0 sections 7–8. The license does not grant access to Crewmeister services, customer data or trademarks, nor guarantee payroll or other business outcomes.
This server cannot be deployed
Maintenance
Related MCP Connectors
Manage CloudPepper servers, Odoo instances, backups, and deployments over MCP.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Monday.com MCP — wraps the Monday.com GraphQL API (BYO API key)
- TimequipOAuthcom.timequip
Manage Timequip projects, tasks, comments, members, and dashboards through MCP.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables managing Onde Inference accounts and model catalog operations through MCP tools such as login, app management, model registration, and assignment. Returns structured JSON over stdio for use with any MCP client.Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables MCP clients to access a CRM over stdio, with Microsoft Entra device-code sign-in so queries run as the signed-in user, and tools to start/check login and search CRM accounts.2 npmISC
- AlicenseAqualityBmaintenanceEnables MCP clients to connect to Agenzax's REST API over stdio, providing tools for messaging, session management, and review-mode oversight.18414 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables MCP clients to query projects, fetch findings, trigger analysis, upload CycloneDX BOMs, and check async token status against an OWASP Dependency-Track instance via stdio.7 npmMIT