Skip to main content
Glama

Delimit Sensor Github Issue

delimit_sensor_github_issue
Read-onlyIdempotent

Checks a single GitHub issue for new comments since a given comment ID, returning a structured signal for routing. Use it to monitor outreach or tracking issues for new activity.

Instructions

Check a GitHub issue for new comments since the last sensor tick.

When to use: to monitor a specific outreach / tracking issue for new activity, returning a structured signal for routing. When NOT to use: for repo-wide scans (use delimit_github_scan) or one-shot fetch (delimit_resource_get).

Sibling contrast: delimit_github_scan scans many repos for migrations; this watches one issue for new comments.

Side effects: read-only network call via gh CLI. Validates repo format with regex (defense-in-depth). Subject to the confused-deputy guard (_check_repo_allowlist) before fetching.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repoYes"owner/repo" GitHub repository. Required.
issue_numberYesIssue number to monitor. Must be > 0.
since_comment_idNoLast seen comment id. 0 = all comments.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed3 schema fields changedv4.7.9
    • changedInput schema / properties / issue_number / description
      Previous value: -"The issue number to monitor."New value: +"Issue number to monitor. Must be > 0."
    • changedInput schema / properties / repo / description
      Previous value: -"GitHub repository in owner/repo format (e.g. \"owner/repo\")."New value: +"\"owner/repo\" GitHub repository. Required."
    • changedInput schema / properties / since_comment_id / description
      Previous value: -"Last seen comment ID. Pass 0 to get all comments."New value: +"Last seen comment id. 0 = all comments."
  2. Changed3 schema fields changedv4.5.5
    • addedInput schema / properties / issue_number / description
      Added value: +"The issue number to monitor."
    • addedInput schema / properties / repo / description
      Added value: +"GitHub repository in owner/repo format (e.g. \"owner/repo\")."
    • addedInput schema / properties / since_comment_id / description
      Added value: +"Last seen comment ID. Pass 0 to get all comments."
  3. First observedv0.1.0

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, and the description reinforces this by stating 'read-only network call via gh CLI.' It adds valuable context beyond the annotations: the regex repo-format validation (defense-in-depth) and the confused-deputy guard (_check_repo_allowlist) that can block the call before fetching. This is genuinely useful failure-mode disclosure.

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?

Compact and efficiently organized: one-line purpose, then labeled sections for when-to-use, when-not-to-use, sibling contrast, and side effects. Every sentence earns its place and the most decision-critical information (purpose, exclusions) is front-loaded.

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

Completeness5/5

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

Complete for a monitored-read tool. An output schema exists to document return values, annotations cover the safety profile, and the description covers usage boundaries, side effects, validation behavior, and the allowlist guard. Nothing an agent needs to call or route this tool correctly is missing.

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?

Schema description coverage is 100%, so the baseline is 3. The description's 'since the last sensor tick' framing gives conceptual meaning to since_comment_id (incremental monitoring), but it does not add concrete parameter-level detail beyond what the schema already documents for repo, issue_number, or since_comment_id. The schema carries the weight here, which is acceptable.

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 opens with a specific verb+resource+scope construction: 'Check a GitHub issue for new comments since the last sensor tick.' It names both alternatives it is not (delimit_github_scan for repo-wide scans, delimit_resource_get for one-shot fetch), making sibling differentiation explicit and immediate.

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?

Provides explicit 'When to use' and 'When NOT to use' sections with concrete alternative tool names and the conditions that select them. Also adds a sibling contrast paragraph specifically distinguishing this tool from delimit_github_scan. No inference is required by the agent.

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

Install Server

Other Tools

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/delimit-ai/delimit-mcp-server'

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