Shiftyasan MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| SHIFTYASAN_API_KEY | Yes | Bearer API key. Format: sk_(live|test)_<64 hex chars>. | |
| SHIFTYASAN_BASE_URL | No | Override base URL (default https://api.shiftyasan.com). Useful for staging or self-host. | https://api.shiftyasan.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| validate_shift_inputA | Validate a shift solver request payload against the Shiftyasan public API schema. Free of charge (does not run the solver). Use this before |
| solve_shiftA | Run the Shiftyasan solver on a shift scheduling request payload. Synchronous (returns within ~30 seconds for solver_timeout_seconds <= 30). Charged per call: requires SHIFTYASAN_API_KEY with sufficient quota. Tip: call |
| get_solve_jobA | Check the status of an asynchronous solve job created by |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| plan_shift | Walk through building a staff schedule with Shiftyasan: gather the requirements, validate them, solve, and present the roster in a form a shift manager can check. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a distinct and non-overlapping purpose: validating input, running the solver, and checking async job status. There is no ambiguity in selecting between them.
All tool names follow a consistent verb_noun pattern with lowercase and underscores: validate_shift_input, solve_shift, get_solve_job. The naming is uniform and predictable.
Three tools is a well-scoped set for a specialized solver API, covering validation, synchronous invocation, and asynchronous status retrieval without bloat or unnecessary redundancy.
The tool surface covers the full workflow: validate payload, run solver, and retrieve async result. There are no obvious missing operations for the stated domain of shift scheduling solving.