Crescender MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CRESCENDER_API_URL | No | Override only if you're pointing at a non-production deployment. | https://app.crescender.com.au |
| CRESCENDER_API_TOKEN | Yes | Required. Issue from https://app.crescender.com.au/school/<id>/settings/integrations. Format crsc_<random>. | |
| CRESCENDER_MCP_HEALTH | No | Set to 1 in container deployments to enable the GET /health HTTP endpoint. | 0 |
| CRESCENDER_MCP_LOG_LEVEL | No | One of debug / info / warn / error. | info |
| CRESCENDER_API_TIMEOUT_MS | No | Per-request upstream timeout. | 15000 |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_schoolsA | List schools accessible to the calling token. Each token is bound to exactly one school, so this returns a single-item array. Useful for the AI to confirm which school it's looking at before making other calls. |
| get_assetA | Get full detail for a single asset (instrument, equipment, sub-item) by id. Includes model, serial, location, role, and the current loan if any. |
| search_assetsA | Search the school's assets by free-text query and/or filters. Returns up to 50 matches per page. Use the |
| get_loans_for_assetA | Get the loan history for a single asset. Currently returns whatever loans field is embedded on the asset detail; in a future version may paginate independently. |
| list_membersA | List the school's members. Returns id, role, status, external_id only — no PII (email/phone are intentionally excluded from the public API). |
| list_asset_threadsA | List asset-comms threads (vendor / repair / service conversations attached to assets). Read-only — vendor-token issuance is NOT exposed via this MCP. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct resource or action: get_asset and search_assets are clearly different (detail vs. search), and loan history, threads, members, and schools are all separate concerns. No overlapping purposes.
All tools consistently follow the 'verb_noun' pattern in lowercase snake_case (e.g., get_asset, list_asset_threads, search_assets). The naming is uniform and predictable.
6 tools is well-scoped for an asset management server. Each tool covers a core area without being overwhelming or insufficient.
The tool surface is heavily read-only: assets have get and search but no create/update/delete; loans only show history; threads only list; members and schools only list. Missing basic write operations for the domain.