Skip to main content
Glama

🌙 Nightshift

The on-call data team that gets smarter every night.

Live demo · Break it yourself · JUDGING.md (60s) · How we win · Submit pack · Upstream PR datahub-skills#126 · Apache 2.0

try.* is the judge sandbox (break / wake / restore on a real graph). /app is the connected war room (your DataHub, Sentinel, history). Same agent loop; different entry. The dbt demo PR is a real draft fix the agent opened (nightshift-dbt-demo#3) - proof of “agents that do real work,” not a screenshot.

Nightshift landing

At 2:47am an upstream team renames a column and tells nobody. By 9:07am the revenue dashboard reads zero, and Finance notices before the data team does. Nightshift takes that pager: a Claude agent wired into your DataHub graph works the incident like a senior engineer, and then does the thing humans never have time to do at 4am: it writes down what it learned, inside the graph itself.

The second time a pipeline breaks the same way, Nightshift does not investigate. It remembers. An investigation becomes a lookup.

War room: one night of on-call work on one page

The night, in numbers

Measured on DataHub's showcase-ecommerce datapack (1,049 entities), from the replayable shift reports in examples/shift-reports/ (wall-clock shift length + investigation tool calls counted in those reports):

Night 1 (cold)

Night 3 (memory)

Investigation tool calls

14

5, including exactly the 2 reads memory prescribed

Shift wall-clock

2.2 min

1.1 min

Lineage re-walked

full path

none

By night 3 the agent recognized a recurrence, reframed the incident from a SQL problem to a process problem, escalated to the model's owner, and proposed a dbt source test so CI would block the regression. See the real draft PR: nightshift-dbt-demo#1.

Related MCP server: mcp-incident-responder

Architecture

flowchart LR
 P([📟 the pager]) --> A

 subgraph agent [Nightshift agent (Claude)]
 A[1 RECALL] --> B[2 LINEAGE]
 B --> C[3 DIAGNOSE<br/>one root cause]
 C --> D[4 REMEMBER]
 D --> E[5 FIX PR<br/>draft]
 end

 subgraph dh [DataHub OSS]
 M[(the graph remembers<br/>postmortems · tags · guards)]
 end

 A -- "recall_incident_memory" --> N
 B -- "search · schemas · lineage + SQL" --> O[datahub MCP server<br/>official, reads]
 D -- "incidents · assertions · memory" --> N[nightshift MCP server<br/>ours, writes]
 O --> M
 N --> M
 E --> R([☀️ the morning report])

The official mcp-server-datahub covers the read surface completely. It has no write surface for the on-call loop: no incidents, no assertions, no memory. The Nightshift MCP server is that missing write surface, built on the OSS GraphQL API and metadata model, and upstreamed as a skill PR (plus a packaging bug report found along the way). Full detail in docs/architecture.md.

What the agents leave behind

Open the DataHub UI after a shift and every conclusion is already there, in the surfaces your team uses today:

  • The incident, raised and resolved in DataHub (open_incident / resolve_incident).

  • The postmortem, written into the dataset's documentation (prose for the human at 9am).

  • A machine-readable memory, a structured property in JSON, for the next agent.

  • A searchable failure-mode tag for everyone, via find_datasets_with_failure_mode.

  • A column-presence assertion on the field that broke, visible in the Validations tab (guard_column). Honest scope: it marks that the column exists in the catalog; value-level checks (not-null / sum > 0) stay a follow-up for dbt tests / CI.

  • A concrete fix: a dbt change built from the columns the catalog actually holds: a real draft PR.

Nightshift itself is stateless. The memory lives in DataHub aspects, so it survives restarts and model changes, and any MCP-capable agent pointed at the same graph inherits it.

One incident, whole-graph immunization

When a shift closes, Nightshift asks the graph one more question: where else does this exact exposure exist? immunize_graph finds every dataset carrying the same column, across platforms, and leaves an idempotent presence guard on each one. On the demo graph that is about 10 datasets over dbt, Looker, PowerBI, S3 and Postgres in a single call: datasets that never broke get the same Validations marker from an incident they never had.

The Sentinel

Nobody presses the button. The Sentinel fingerprints the schema of every watched dataset on an interval. When a column moves (renamed, dropped, or retyped), it names the drift and wakes the night shift itself (trigger: sentinel). The loop closes without a human pager at all.

Authority boundaries

  • Agent may write (Nightshift MCP): incidents, documentation, structured memory, failure tags, column-presence EXTERNAL assertions, draft fix PR.

  • Still human: merge the PR, value-level tests, production deploy.

  • Memory lives in DataHub aspects, not in chat history. Nightshift is stateless; the graph remembers across nights and model changes.

  • Presence guards assert the column exists in the catalog. They are not value-level quality tests (not-null / sum > 0 stay in dbt / CI).

Claims in this README are gated by python scripts/verify_judging_evidence.py.

Quick start

Prerequisites: Docker with ~8 GB of memory, and either an authenticated claude CLI or an ANTHROPIC_API_KEY.

make up datapack # DataHub + a realistic 1,049-entity enterprise graph
make setup # install Nightshift
make demo # silently break the pipeline, hand the agent the pager

If datahub datapack fails on a fresh PyPI install of acryl-datahub 1.7.0 (missing resource file), that is datahub#19028. Workaround until the fix lands: install the CLI from the DataHub repo (pip install -e ./metadata-ingestion from a clone) or use a build that still ships the datapack assets, then re-run make datapack.

make demo renames an upstream column, tells nobody, and prints the morning report when the shift ends. nightshift war-room renders the night as a single dark page. Replayable shift reports and postmortems live in examples/.

Built on

The DataHub MCP Server and the DataHub Agent Context Kit. Nightshift adds the write surface OSS agents were missing and gives it back upstream.

License

Apache 2.0

Available Tools

7 tools
find_datasets_with_failure_modeA

Find every asset in the graph that already suffered a given failure mode.

Failure modes are slugs such as silent-schema-change or late-upstream.

ParametersJSON Schema
NameRequiredDescriptionDefault
failure_modeYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses the exhaustive scope ('every asset in the graph') and implies a read-only query, but it does not mention potential limitations, pagination, or error behavior. It adds some context beyond the bare function but not rich behavioral detail.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is only two short sentences. The first states the purpose clearly, the second clarifies the parameter format. Every word earns its place, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (one parameter, no nested objects) and has an output schema, so return values need not be described. The description sufficiently explains the core operation and parameter format. Minor gaps exist (e.g., what constitutes an 'asset' or 'graph'), but these are likely assumed in the domain context. Overall, it is nearly complete for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one parameter with zero description coverage, so the tool description compensation is critical. It explains that failure_modes are slugs and provides concrete examples ('silent-schema-change', 'late-upstream'), giving an agent clear guidance on the expected format. This directly adds value beyond the schema's bare string type.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Find every asset'), the resource ('in the graph'), and the condition ('already suffered a given failure mode'). The verb is specific and the scope is unambiguous. It differentiates from sibling tools by focusing on assets by failure mode rather than incident memory or lineage recall.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to use this tool vs. alternatives. The description implies it should be used to find assets affected by a failure mode, but it does not mention exclusions or name alternative tools (e.g., recall_across_lineage or guard_column). Agents are left to infer the appropriate context from the tool name and sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

guard_columnA

Leave an assertion watching a column, so this break cannot recur silently.

Call this after a fix. It is what turns one repaired incident into a permanent guarantee for everyone downstream.

ParametersJSON Schema
NameRequiredDescriptionDefault
whyYes
columnYes
dataset_urnYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden for behavioral disclosure. It reveals that this creates a persistent assertion ('permanent guarantee for everyone downstream'), which is meaningful. However, it omits important details like whether the assertion is idempotent, what happens if the assertion already exists, or any required permissions. This is a moderate disclosure but not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, with the first sentence front-loading the core action. The second sentence adds motivational context but is somewhat verbose. Overall, it is concise and well-structured, though the second sentence could be trimmed without losing essential meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with three required parameters, no annotations, and zero schema parameter descriptions, the description gives a clear purpose and usage cue but lacks detail on parameter semantics and potential side effects. The presence of an output schema may cover return values, but the overall description leaves gaps that could confuse an agent on how to correctly invoke the tool with all parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has zero description coverage for its three required parameters. The description only indirectly explains 'column' ('watching a column') but does not clarify 'dataset_urn' or 'why'. Since the schema provides no help, the description fails to compensate for these undocumented parameters, leaving their semantics ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: 'Leave an assertion watching a column' with a specific verb and resource. It also conveys the intended effect ('so this break cannot recur silently'), which distinguishes it from sibling tools like resolve_incident or remember_incident that focus on incident lifecycle, not preventive column guards.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Call this after a fix,' providing clear timing context. It explains the purpose—'turns one repaired incident into a permanent guarantee'—which implies it is the follow-up to a resolution. It does not explicitly mention when not to use it or alternatives, but the context is sufficient given the sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

open_incidentB

Open an incident on an asset in DataHub, so the break is visible to humans.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYes
dataset_urnYes
descriptionYes
incident_typeNoOPERATIONAL

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description alone must disclose behavioral traits. It only says the action makes a break visible, but does not explain mutation effects, idempotency, permission requirements, or what happens to existing incidents. This is insufficient for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that avoids unnecessary words. It efficiently conveys the core function and purpose without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations and 0% parameter description coverage, the tool requires more context than provided. The output schema exists, so return values need not be described, but the description leaves gaps in usage guidance, parameter semantics, and behavioral transparency. Sibling tools like resolve_incident suggest a lifecycle, but the description does not position itself within it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description adds no parameter-level detail. The phrases 'on an asset' and 'the break' loosely map to dataset_urn and description, but there is no explicit explanation of what each parameter means, how they relate, or the expected format for incident_type.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Open an incident') and the resource ('an asset in DataHub'), with a specific purpose ('so the break is visible to humans'). This distinguishes it from siblings like resolve_incident, which handles closing incidents.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the usage context (surfacing a break for human visibility), but it does not explicitly state when to use this tool versus alternatives, nor does it mention exclusions or prerequisites. No sibling distinctions are drawn.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

recall_across_lineageA

Read Nightshift memory for several assets at once, e.g. a lineage path.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataset_urnsYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description carries the full burden of disclosing behavioral traits. The verb 'Read' clearly indicates a non-mutating, safe operation, which is useful. However, it does not disclose any caveats such as how missing or invalid dataset_urns are handled, rate limits, or authentication requirements. The description is adequate for a simple read tool but lacks depth.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, tightly constructed sentence that front-loads the verb and resource. Every word adds value, with no redundancy or tangential information. This is an excellent example of concise, structured documentation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool design (one parameter, output schema present), the description is largely complete for invocation purposes. It states what the tool does and hints at the parameter's meaning. However, it omits any guidance on error behavior or edge cases (e.g., what if some urns do not exist), which would have made it fully comprehensive. The presence of an output schema reduces the need to explain return values, so a 4 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description must compensate for parameter explanations. It clarifies that dataset_urns refers to 'several assets' and gives a lineage path example, but the relationship between 'lineage path' and the array-of-strings schema is ambiguous. It does not explicitly explain the format or expected values of the dataset_urns entries, so it only partially compensates for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Read'), resource ('Nightshift memory'), and scope ('several assets at once'), along with a concrete example ('a lineage path'). This effectively distinguishes it from sibling tools like recall_incident_memory, which focuses on incident-specific memory.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use the tool ('for several assets at once, e.g. a lineage path'), implying it is appropriate for batch reads across a lineage. However, it does not explicitly mention alternatives or exclusions (e.g., 'use recall_incident_memory for single incidents'), so it falls short of a perfect score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

recall_incident_memoryA

Read what previous nights concluded about this dataset.

Call this FIRST, before walking any lineage. If a previous incident already explains today's symptom, you can skip the investigation entirely.

ParametersJSON Schema
NameRequiredDescriptionDefault
dataset_urnYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the read-only nature ('Read') and the short-circuit behavior that can skip investigation, which are valuable traits. It does not cover edge cases like empty memory, but the presence of an output schema likely covers return structure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with zero wasted words, front-loading the purpose and then providing a clear usage directive. It is an example of efficient, high-value communication.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with an output schema, the description is fairly complete. It explains the strategic context (first call) and the purpose, but does not explicitly address how to format dataset_urn or handle missing memory. The output schema likely compensates for return-value details, so this is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain the dataset_urn parameter beyond its name. Since the schema provides no details and the description fails to compensate, the agent is left to infer that dataset_urn identifies the dataset. This adds minimal value over the raw schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Read' and identifies the resource ('previous nights concluded about this dataset'), making its purpose unambiguous and distinguishing it from sibling tools like recall_across_lineage. It clearly states what the tool does and the value it provides.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use the tool ('Call this FIRST, before walking any lineage') and explains the strategic benefit ('skip the investigation entirely'). However, it does not provide explicit when-not-to-use guidance or mention alternative tools, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

remember_incidentA

Write tonight's conclusion into the graph, for humans and for the next agent.

This is the last thing you do on any incident, and it is not optional. Write a conclusion, never a status: the next night reads this instead of starting from nothing.

ParametersJSON Schema
NameRequiredDescriptionDefault
fix_urlNo
summaryYes
guard_urnNo
root_causeYes
dataset_urnYes
failure_modeYes
incident_urnNo
lineage_pathNo
upstream_urnNo
changed_fieldNo
minutes_to_root_causeNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full transparency burden. It discloses that this is a persistent write operation, that it is mandatory at incident close, and that it should contain a conclusion rather than a status. It does not mention overwrite behavior, permissions, or error conditions, but the provided context is substantial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with the core action front-loaded in the first sentence. Every sentence adds meaningful context about audience, timing, and content requirements. There is no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (11 parameters, 4 required) and zero schema descriptions, the description is insufficient for guiding correct invocation. It explains the tool's purpose and when to use it but does not address how to populate key fields like failure_mode, root_cause, lineage_path, or changed_field.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description provides no information about any of the 11 parameters, and the schema has 0% description coverage. The parameter names such as 'dataset_urn' and 'failure_mode' are self-explanatory, but the tool description adds no value in explaining required or optional parameters, leaving many ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool writes a conclusion into the graph for humans and the next agent. It is specific about the action (write), the resource (graph), and the content (tonight's conclusion), and it distinguishes the tool from sibling recall tools as the final write step.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly instructs that this is the last thing to do on any incident and that it is not optional. It also provides a clear content guideline—write a conclusion, never a status—and explains the rationale: the next agent reads this instead of starting from nothing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

resolve_incidentB

Resolve an incident with a message explaining what was actually done.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageYes
incident_urnYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses that a message explaining what was actually done is required, but it does not mention side effects (e.g., changing status), permissions, reversibility, or any other behavioral traits. This is a significant gap for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence, front-loaded with the primary action, and contains no redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has an output schema and only two required parameters, but the description lacks usage context, side-effect disclosure, and differentiation from siblings. It is minimally adequate but incomplete for an agent to confidently select and invoke without further schema hints.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It clarifies the 'message' parameter as an explanation of what was actually done, but does not describe 'incident_urn' beyond the general reference to an incident. Thus it adds partial semantic value but leaves one parameter unexplained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Resolve' and identifies the resource 'an incident,' and indicates a required message. This clearly distinguishes from sibling tools like 'open_incident' and 'remember_incident.'

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for resolving incidents but provides no explicit guidance on when to use this tool versus alternatives such as 'open_incident' or 'remember_incident.' No exclusions or alternative scenarios are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv0.1.0
    • First observedfind_datasets_with_failure_mode
    • First observedguard_column
    • First observedopen_incident
    • First observedrecall_across_lineage
    • First observedrecall_incident_memory
    • First observedremember_incident
    • First observedresolve_incident

TDQS

A3.9/5.0
Disambiguation5/5

Each tool has a unique role in the incident lifecycle: recall memory, search failures, open/resolve incidents, guard columns, and write conclusions. No overlap in purpose or action.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (e.g., recall_incident_memory, open_incident, guard_column). No mixed conventions or vague verbs.

Tool Count5/5

Seven tools is ideal for an incident response server: enough to cover the full workflow without redundancy or bloat.

Completeness4/5

The surface covers the full incident lifecycle from recall to prevention to memory. Minor gaps like updating an incident or listing open incidents exist, but the core flow is complete.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/Mossab28/nightshift'

If you have feedback or need assistance with the MCP directory API, please join our Discord server