Skip to main content
ClaudeWave
hyperdrift-io avatar
hyperdrift-io

deputy-workforce-mcp

View on GitHub

Read-only workforce operations MCP for Deputy — MCP Maker delivery 001

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/hyperdrift-io/deputy-workforce-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "deputy-workforce-mcp": {
      "command": "node",
      "args": ["/path/to/deputy-workforce-mcp/dist/index.js"],
      "env": {
        "MCP_BEARER_TOKEN": "<mcp_bearer_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/hyperdrift-io/deputy-workforce-mcp and follow its README for install instructions.
Detected environment variables
MCP_BEARER_TOKEN
Use cases

MCP Servers overview

# Deputy Workforce Operations MCP

A read-only Model Context Protocol server that turns Deputy workforce records into five grounded,
operational workflows for AI assistants.

## What a Deputy manager can ask

- “Where are the coverage gaps from 20 to 26 July, using a minimum of two people?”
- “Which combined completed and rostered workloads cross our 40-hour planning threshold?”
- “Show timesheet exceptions above a 15-minute tolerance.”
- “Which rosters overlap recorded unavailability or approved leave?”
- “Summarise staffing by location and day for this week.”

The tools answer those questions directly instead of exposing Deputy's endpoint catalogue.

## Representative results

The examples below use fictional records and compact the structured response to the fields a
manager can act on.

### Coverage gaps

```json
{
  "period": { "start": "2026-07-20", "end": "2026-07-26", "timezone": "Europe/London" },
  "findings": [{ "kind": "coverage_gap", "sources": [{ "resource": "Roster", "id": 1001 }], "rule": "active roster has fewer than 2 people" }],
  "limits": []
}
```

### Overtime risk

```json
{ "period": { "start": "2026-07-20", "end": "2026-07-26", "timezone": "Europe/London" }, "findings": [{ "worker_id": 7, "planned_hours": 43.5, "threshold_hours": 40, "sources": [{ "resource": "Timesheet", "id": 2007 }, { "resource": "Roster", "id": 1007 }], "rule": "completed plus remaining rostered hours exceeds threshold" }], "limits": [] }
```

### Timesheet exceptions

```json
{ "period": { "start": "2026-07-20", "end": "2026-07-26", "timezone": "Europe/London" }, "findings": [{ "kind": "start_time_variance", "roster_id": 1002, "minutes": 22, "tolerance_minutes": 15, "sources": [{ "resource": "Roster", "id": 1002 }, { "resource": "Timesheet", "id": 2002 }], "rule": "timesheet start differs from roster beyond tolerance" }], "limits": [] }
```

### Availability conflicts

```json
{ "period": { "start": "2026-07-20", "end": "2026-07-26", "timezone": "Europe/London" }, "findings": [{ "kind": "recorded_unavailability_conflict", "sources": [{ "resource": "Roster", "id": 1002 }, { "resource": "EmployeeAvailability", "id": 4001 }], "rule": "roster interval overlaps recorded unavailability" }], "limits": [] }
```

### Staffing summary

```json
{ "period": { "start": "2026-07-20", "end": "2026-07-26", "timezone": "Europe/London" }, "findings": [{ "location": "North", "day": "2026-07-21", "rostered_hours": 16, "completed_hours": 12, "assigned": 3, "unassigned": 1, "sources": [{ "resource": "Roster", "id": 1008 }, { "resource": "Timesheet", "id": 2008 }], "rule": "group roster and timesheet hours by location and local day" }], "limits": [] }
```

Every finding names its period, source record identifiers, and the rule or threshold that produced
it. Empty data gives a confidence limit rather than a false all-clear.

## Safety and data handling

- Every tool is read-only, idempotent, and non-destructive.
- The server never creates or changes shifts, timesheets, leave, payroll, or employee data.
- Workload thresholds are operational planning signals, not payroll, employment, or legal advice.
- Telemetry excludes tool arguments, employee and location IDs, dates, result content, and tokens.
- Standard MCP analytics are disabled unless the deployment owner provides a PostHog project token;
  the privacy allowlist is documented in [PRIVACY.md](PRIVACY.md).
- V1 is single-tenant by deployment: one Deputy installation and one MCP bearer token per instance.
- Authentication, bounded HTTP transport, rate limiting, structured results, and stdio lifecycle
  use MCP Maker's shared `@hyperdrift-io/mcp-service-kit`; Deputy keeps its provider and workflow logic.

See [SECURITY.md](SECURITY.md) and [PRIVACY.md](PRIVACY.md) for the complete contracts.

## Local installation

Node.js 22 and pnpm are required. The quickest safe inspection uses the public package and
fictional fixture data:

```bash
DEPUTY_MODE=fixture pnpm dlx @hyperdrift-io/deputy-workforce-mcp@latest
```

For a visible tool-list and tool-call proof, see [the fixture demonstration](docs/FIXTURE_DEMO.md).
The package is also distributed through the official MCP Registry and as a one-file MCP Bundle on
Smithery. Maintainers can reproduce the local bundle with:

```bash
pnpm mcpb:pack
```

To work from source:

```bash
git clone https://github.com/hyperdrift-io/deputy-workforce-mcp.git
cd deputy-workforce-mcp
pnpm install
pnpm build
DEPUTY_MODE=fixture node dist/stdio.js
```

Fixture mode contains fictional `Worker 01`-style records and is safe for evaluation. To connect a
Deputy installation, copy `.env.example` to `.env.local`, choose `DEPUTY_MODE=live`, and provide a
customer-owned base URL and OAuth access token. Live resource shapes still require the first
sandbox verification recorded in [docs/DEPUTY_API.md](docs/DEPUTY_API.md).

Example client configuration:

```json
{
  "mcpServers": {
    "deputy-workforce": {
      "command": "node",
      "args": ["/absolute/path/to/deputy-workforce-mcp/dist/stdio.js"],
      "env": { "DEPUTY_MODE": "fixture" }
    }
  }
}
```

## Remote deployment

The same five tools can run over authenticated streamable HTTP. Remote mode requires an MCP bearer
token of at least 32 bytes, authenticates before parsing requests, limits bodies to 1 MiB, and uses
bounded in-memory rate protection.

```bash
DEPUTY_MODE=fixture \
MCP_BEARER_TOKEN="replace-with-at-least-32-random-bytes" \
PORT=3013 \
pnpm start
```

- Health: `GET /health`
- MCP: authenticated `POST /mcp`

See [docs/DEPLOYMENT.md](docs/DEPLOYMENT.md) before operating a remote instance.

## Tool reference

The server registers exactly five tools:

- `find_coverage_gaps`
- `flag_overtime_risk`
- `list_timesheet_exceptions`
- `find_availability_conflicts`
- `summarise_staffing`

Inputs, rules, and output limits are documented in [docs/TOOLS.md](docs/TOOLS.md).

## Status

Fixture mode, stdio, and authenticated streamable HTTP are operational. Live Deputy mode remains
explicitly pending a customer-owned sandbox token and field-shape verification. The public API is
still in prototype discovery and may evolve from real workflow feedback.

## Built as MCP Maker delivery 001

Deputy Workforce Operations MCP is the flagship public implementation from
[MCP Maker](https://hyperdrift.io/services/mcp-maker): Hyperdrift turns established SaaS APIs into
secure, production-ready AI integrations.

The open-source core remains useful on its own. MCP Maker offers managed deployment, security
hardening, custom workflows, and operational support for organisations that want a production
integration tailored to their environment.
ai-integrationdeputymcptypescriptworkforce-management

What people ask about deputy-workforce-mcp

What is hyperdrift-io/deputy-workforce-mcp?

+

hyperdrift-io/deputy-workforce-mcp is mcp servers for the Claude AI ecosystem. Read-only workforce operations MCP for Deputy — MCP Maker delivery 001 It has 0 GitHub stars and was last updated today.

How do I install deputy-workforce-mcp?

+

You can install deputy-workforce-mcp by cloning the repository (https://github.com/hyperdrift-io/deputy-workforce-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is hyperdrift-io/deputy-workforce-mcp safe to use?

+

hyperdrift-io/deputy-workforce-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains hyperdrift-io/deputy-workforce-mcp?

+

hyperdrift-io/deputy-workforce-mcp is maintained by hyperdrift-io. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to deputy-workforce-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy deputy-workforce-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: hyperdrift-io/deputy-workforce-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/hyperdrift-io-deputy-workforce-mcp)](https://claudewave.com/repo/hyperdrift-io-deputy-workforce-mcp)
<a href="https://claudewave.com/repo/hyperdrift-io-deputy-workforce-mcp"><img src="https://claudewave.com/api/badge/hyperdrift-io-deputy-workforce-mcp" alt="Featured on ClaudeWave: hyperdrift-io/deputy-workforce-mcp" width="320" height="64" /></a>

More MCP Servers

deputy-workforce-mcp alternatives