Skip to main content
Glama

Signalint

CI npm version M8ven Score

Signalint 是一个用于 JavaScript 和 TypeScript 诊断的本地 MCP 服务器。它运行 Oxlint、TypeScript,并可选择运行 Biome;缓存未更改的检查;对重复出现的问题进行聚类; 并在同一诊断消失后又反复出现时发出警告。 当 MCP 服务器重启时,循环历史会从有效的 .signalint/session.jsonl 条目中恢复; 格式错误或崩溃截断的行会被跳过。

已收录于:

诊断压缩示例

当编码代理请求项目诊断时,原始编译器和 linter 输出会迅速用跨多个文件的重复错误淹没上下文窗口。Signalint 会规范化问题,并按根本原因进行聚类,然后返回有界、按优先级排序的响应:

原始诊断(10 个文件中的 40 个问题 · 9,151 字节)

[
  {
    "issueId": "ts-01",
    "file": "src/file01.ts",
    "line": 10,
    "col": 5,
    "engine": "tsc",
    "rule": "TS2322",
    "severity": "error",
    "message": "Type 'string' is not assignable to type 'number' in fixture assignment 01.",
    "fixable": false
  },
  // ... 39 more raw normalized issues
]

返回给代理的聚类响应(4 个聚类 · 1,233 字节 · 减少 86.5%)

{
  "schemaVersion": "1.1",
  "status": "issues_found",
  "engines": {
    "oxlint": { "status": "ok" },
    "tsc": { "status": "ok" },
    "biome": { "status": "disabled" }
  },
  "totalIssues": 40,
  "clusters": [
    {
      "clusterId": "c1",
      "rootCauseSummary": "10 TS2322 issues across 10 files",
      "ruleIds": ["TS2322"],
      "issueCount": 10,
      "fileCount": 10,
      "priority": 1,
      "suggestedAction": "Review the shared cause of TS2322 across 10 files",
      "sampleIssueIds": ["ts-01", "ts-02"]
    },
    {
      "clusterId": "c2",
      "rootCauseSummary": "10 no-unused-vars issues across 10 files",
      "ruleIds": ["no-unused-vars"],
      "issueCount": 10,
      "fileCount": 10,
      "priority": 2,
      "suggestedAction": "Review the shared cause of no-unused-vars across 10 files",
      "sampleIssueIds": ["unused-01", "unused-02"]
    },
    {
      "clusterId": "c3",
      "rootCauseSummary": "10 eqeqeq issues across 10 files",
      "ruleIds": ["eqeqeq"],
      "issueCount": 10,
      "fileCount": 10,
      "priority": 5,
      "suggestedAction": "Apply structured fixes for eqeqeq across 10 files",
      "sampleIssueIds": ["eqeqeq-01", "eqeqeq-02"]
    },
    {
      "clusterId": "c4",
      "rootCauseSummary": "10 prefer-const issues across 10 files",
      "ruleIds": ["prefer-const"],
      "issueCount": 10,
      "fileCount": 10,
      "priority": 5,
      "suggestedAction": "Apply structured fixes for prefer-const across 10 files",
      "sampleIssueIds": ["const-01", "const-02"]
    }
  ],
  "truncated": false,
  "loopWarning": null
}

代理会收到一个简洁的摘要,其中包含按优先级排序的聚类和示例问题 ID。当需要针对特定聚类或问题的更详细信息时,代理会调用 get_issue_detail,而无需重新运行整个项目扫描。

Related MCP server: agent-workspace-mcp

要求

  • Node.js 20.19 或更高版本(Node 20 系列),或 Node.js 22.12 或更高版本

  • 一个 JavaScript 或 TypeScript 项目;TypeScript 检查需要 tsconfig.json

  • 用于源码开发的 pnpm 11.9.0

安装

在要检查的项目中安装 Signalint:

npm install --save-dev signalint-mcp

从该项目根目录运行设置命令。它会检测 TypeScript、Oxlint 和 Biome 配置,写入 signalint.config.json,并提供更新附近的 Claude Code、Cursor、Codex CLI 或 Antigravity MCP 配置的选项:

npx signalint-mcp init

如果无法安全选择 MCP 客户端,该命令会打印要复制的确切配置片段。仅当根目录存在 tsconfig.json 时才启用 TypeScript;当存在 Biome 配置时启用 Biome;当未检测到配置的 linter 时,Oxlint 是回退选项。要手动配置 Signalint,请创建 signalint.config.json

{
  "engines": {
    "oxlint": true,
    "tsc": true,
    "biome": false
  },
  "ignore": ["node_modules/**", "dist/**", ".signalint/**"],
  "timeoutsMs": {
    "oxlint": 30000,
    "tsc": 120000,
    "biome": 30000
  }
}

Claude Code 设置

从被检查的项目中运行此命令。项目范围会写入一个可共享的 .mcp.json

claude mcp add --scope project signalint -- npx --no-install signalint-mcp
claude mcp get signalint

在原生 Windows 上,按 Claude Code 的要求包装 npx

claude mcp add --scope project signalint -- cmd /c npx --no-install signalint-mcp
claude mcp get signalint

如果 Claude Code 已打开,请重启它。让它调用 Signalint 的 ping 工具, 然后使用 { "paths": ["."] } 调用 check_project

有关范围和故障排除的详细信息,请参阅 Claude Code MCP 文档

Cursor 设置

在被检查的项目中创建 .cursor/mcp.json

{
  "mcpServers": {
    "signalint": {
      "command": "npx",
      "args": ["--no-install", "signalint-mcp"]
    }
  }
}

在原生 Windows 上使用 "command": "cmd""args": ["/c", "npx", "--no-install", "signalint-mcp"]。打开 Cursor 的 MCP 设置,启用 signalint,然后调用 ping,接着调用 check_project

有关配置位置和状态控制的详细信息,请参阅 Cursor MCP 文档

Codex CLI 设置

ChatGPT 桌面应用、Codex CLI 和 IDE 扩展共享一个 配置文件。快速添加命令会自动写入 ~/.codex/config.toml (全局):

codex mcp add signalint -- npx --no-install signalint-mcp

对于项目范围的配置(仅限受信任的项目),请在项目根目录的 .codex/config.toml 中添加:

[mcp_servers.signalint]
command = "npx"
args = ["--no-install", "signalint-mcp"]

在原生 Windows 上,使用 cmd 并将 npx 作为参数传递:

[mcp_servers.signalint]
command = "cmd"
args = ["/c", "npx", "--no-install", "signalint-mcp"]

有关所有配置选项(包括 cwdenv 和每个工具批准 设置)的详细信息,请参阅 Codex MCP 文档

使用 Antigravity 进行设置

Antigravity 使用自己的 MCP 配置文件。已在 Windows 上通过 dogfooding 验证的路径是: %USERPROFILE%\.gemini\antigravity\mcp_config.json

init 命令可以在确认后更新此文件。等效的 Windows 配置是:

{
  "mcpServers": {
    "signalint": {
      "command": "cmd",
      "args": ["/c", "npx", "--no-install", "signalint-mcp"],
      "cwd": "<absolute-path-to-your-project>"
    }
  }
}

在 macOS 或 Linux 上,使用 "command": "npx""args": ["--no-install", "signalint-mcp"]。更新配置后,重启或重新连接 Antigravity。

关于 Antigravity 产品变体的说明: Antigravity 已拆分为多个 产品(IDE、CLI、SDK)。每个变体可能使用不同的配置路径——上述 IDE 路径是确认可用的路径;其他变体可能使用 ~/.gemini/config/mcp_config.json 或项目范围的 .agents/mcp_config.json。 请参阅 antigravity.google/docs/mcp 获取 每个产品的权威列表。

Windows 故障排除

npm link 创建的 Windows .cmd 垫片可能会向 Node 暴露一个连接点路径。如果 signalint-mcp 以 initialize/EOF 错误结束,或 signalint stats 以 代码 0 退出但未打印任何内容,请使用编译后的入口点路径绕过垫片:

node C:\absolute\path\to\Signalint\dist\src\index.js
node C:\absolute\path\to\Signalint\dist\src\cli.js stats

当前构建在决定是否启动之前会规范化链接路径,但直接调用 Node 仍然是旧构建或不常见的 npm 设置的可靠回退方案。

配置

engines.oxlintengines.tscengines.biome 是布尔值。默认值为 启用 Oxlint 和 tsc,禁用 Biome。省略的引擎键保留这些默认值。 未知键和类型错误的值会导致配置错误。

ignore 是一个项目相对 glob 数组。Signalint 支持 ***?,规范化 Windows 分隔符,并排除匹配的请求路径和 诊断。由于 tsc 是一个全程序引擎,在调用时它仍然接收完整的 tsconfig.json 程序;被忽略的 TypeScript 路径不会触发增量 check_files 运行,其诊断会从响应中移除。

引擎原生配置保留在原生文件中。v1 缓存哈希识别根目录的 .oxlintrc.oxlintrc.jsonoxlint.jsontsconfig.jsonbiome.jsonbiome.jsonc。更改其中一个会使相关引擎缓存失效。其他有效的 源——包括 .oxlintrc.jsonc、扩展配置和嵌套的包配置—— 不属于 v1 缓存哈希的一部分;更改其中一个后请清除 .signalint/

timeoutsMs 以毫秒为单位设置正整数子进程截止时间。默认值为 Oxlint 30 秒、tsc 120 秒、Biome 30 秒。超时的引擎及其子进程会被终止。 在 schema 1.1 检查响应中,该引擎在 engines 下具有 { "status": "error", "message": "tsc did not complete within 120s" }, 而已完成引擎的诊断会被保留。

已知限制

  • Signalint 仅支持 JavaScript 和 TypeScript 项目。

  • 内置引擎是 Oxlint、TypeScript 和 Biome;v1 不支持 任意自定义引擎。

  • Signalint 报告问题是否具有结构化修复,但 v1 不应用 修复。

  • Signalint 不是 SAST 或安全扫描器。

  • 目前没有 IDE 扩展;集成使用 MCP 或命令行客户端。

  • 循环检测有意仅限于 lint、类型和测试问题签名; 它不检测一般的代理对话循环。

  • tsc 适配器要求项目根目录有一个 tsconfig.json。Monorepo 必须 使用 TypeScript 项目引用提供解决方案样式的根配置; Signalint 不会自动发现独立的包配置。

  • check_files 仅将显式传递给该调用的文件视为与 TypeScript 缓存失效相关。如果文件 A 更改但被省略,而未更改的文件 B 被检查,并且 B 依赖于 A,Signalint 可能会重用过时的 tsc 结果。包含 每个更改的依赖文件或运行 check_project;基于依赖图的 失效在 v1 中未实现。

MCP 工具

  • ping 检查本地服务器是否已连接并返回 pong

  • check_project 接受可选的 { "paths": ["."] } 并返回聚类诊断。

  • check_files 接受 { "files": ["src/file.ts"] } 并使用增量缓存。

  • get_issue_detail 接受来自最新成功检查的恰好一个 clusterIdissueId, 并返回其完整问题,或返回 status: "stale" 响应。

  • get_loop_status 返回当前被标记为振荡的问题签名。

缓存和会话工件写入 .signalint/ 下,不应提交。

CLI 和包冒烟测试

在没有 MCP 客户端的情况下运行相同的项目检查:

npx --no-install signalint check .

在 MCP 检查累积到 .signalint/session.jsonl 之后,打印 Phase 6 测量摘要:

npx --no-install signalint stats

报告包括平均规范化原始到聚类 JSON 负载减少、引擎文件缓存命中率、平均和最大检查延迟,以及触发循环警告的不同问题签名数量。引擎文件查找会分别计算每个启用的引擎,因此一个更改的 TypeScript 文件可能为 Oxlint 和 tsc 各错过一次。延迟涵盖从 MCP 工具入口到引擎/缓存工作、聚类和循环评估的处理程序工作;它排除遥测追加和 stdio 传输。统计包括活动会话日志及其轮换的 .1 备份,其保留的重叠部分只计算一次。零原始负载的干净检查被排除在 减少平均值之外,而缺少指标的旧检查仍被计数,但不计入不可用的聚合值。

CLI 在发现问题时以代码 1 退出。两个标志支持 CI 使用: --format github 为每个问题打印一条 GitHub Actions 注释 (::error file=...,line=...,col=...::message::warning ...) 而不是 JSON,--fail-on-priority <N> 仅在聚类的优先级等于或低于 N 时以非零退出,而不是在发现任何问题时。

要对已安装的包执行实际的 MCP check_project 调用, 请运行:

node node_modules/signalint-mcp/examples/check-project.mjs .

GitHub Actions

存储库根目录的 action.ymlsignalint check 包装为复合 操作,用于 CI。它安装 Node,从 npm 安装 signalint-mcp,并 使用 --format github 运行检查,以便问题以内联注释的形式出现在 拉取请求差异上:

- uses: TranQui004/signalint@main
  with:
    fail-on-priority: "3"

fail-on-priority 默认为 5,这会在发现任何问题时使作业失败, 匹配不带标志的 signalint check 的默认行为。较低的值 仅在聚类至少达到该紧急程度时使作业失败:优先级 1 是 没有结构化修复的错误,优先级向 5 增加,因为问题变得 更可修复或更系统化(请参阅 src/cluster/clusterEngine.ts 中的 scorePriority)。

开发

pnpm 11.9.0 是源码开发的规范包管理器。存储库 提交 pnpm-lock.yaml,在 package.json 中声明 pnpm,并在 CI 中使用 pnpm。

pnpm install --frozen-lockfile
pnpm lint
pnpm typecheck
pnpm test
pnpm build

如果全局 npm 垫片找不到 npm-cli.js,请直接使用 node node_modules/typescript/bin/tsc -p tsconfig.json 构建。

在准备发布之前,使用 npm pack --dry-run 并在干净的项目中验证打包的 tarball。发布需要明确的发布批准。

安全

有关当前的 npm 审计公告、其评估的运行时可达性以及需要重新评估的条件,请参阅 SECURITY.md

文档

许可证

Signalint 采用 MIT License 许可。

Tool DescriptionsA

Average 4.8/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clear, distinct purpose: ping for health, check_project for full scans, check_files for incremental scans, get_issue_detail for querying results, and get_loop_status for looping diagnostics. No two tools overlap in functionality, and the descriptions explicitly differentiate when to use check_project vs check_files.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: ping, check_project, check_files, get_issue_detail, get_loop_status. The only slight deviation is 'ping' being a single verb, but it's a standard health check convention and does not break the pattern's clarity.

Tool Count5/5

With 5 tools, the server is well-scoped for a linting/diagnostics service. Each tool covers a distinct aspect of the workflow (health check, full scan, incremental scan, result retrieval, loop monitoring) without unnecessary bloat, and there is no sense of missing core functionality.

Completeness4/5

The tool surface covers the primary lifecycle: run full checks, run incremental checks, retrieve issue details, and monitor recurring issues. A minor gap is the lack of a tool to list all clusters or clear session state, but the existing tools allow agents to work effectively around these omissions.

Available Tools

5 tools
check_filesA
Read-onlyIdempotent

Runs Oxlint and TypeScript (and optionally Biome) lint and type diagnostics on a specific list of files, using per-engine content-hash caching to skip unchanged files. Read-only; no files are written or modified. Use this for incremental checks after editing specific files; use check_project for a full project scan. The files parameter expects relative file paths (not glob patterns) within the project directory — absolute paths or paths outside the root return an error response. Caching is file-content-hash-based: a file is re-checked only when its content or the engine's config file (e.g., .oxlintrc, tsconfig.json) has changed since the last call, not based on git status. TypeScript is a whole-program engine: it re-runs whenever any TypeScript file in the request has changed content.

ParametersJSON Schema
NameRequiredDescriptionDefault
filesYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeNo
engineNo
statusYes
enginesNo
messageNo
clustersNo
truncatedNo
loopWarningNo
totalIssuesNo
schemaVersionNo
fileRuleChurnWarningNo
Behavior5/5

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

The description adds substantial behavioral detail beyond the annotations: content-hash-based caching, dependency on config files like .oxlintrc and tsconfig.json, and the whole-program re-run behavior of TypeScript. It also confirms no files are modified, which complements the readOnlyHint without contradicting it.

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 longer than average, but every clause earns its place: it covers purpose, usage context, path constraints, caching behavior, and engine-specific nuances. The use guidance is appropriately placed near the beginning, and the caching details are grouped logically. It is thorough but not bloated.

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?

Given the presence of a clear output schema and robust annotations, the description covers everything an agent needs to decide whether and how to call this tool: purpose, engine behavior, input constraints, error conditions, caching semantics, and sibling distinction. No critical operational context is missing.

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

Parameters4/5

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

The schema only says 'files' is an array of non-empty strings, so the description carries the burden of explaining path semantics. It does this well by specifying relative paths, excluding glob patterns, and warning about absolute/outside-root paths. This is strong but not exhaustive; it could also clarify whether directories are accepted, though the word 'files' likely implies not.

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 action — running Oxlint, TypeScript, and optionally Biome diagnostics on a specific file list — and clearly distinguishes itself from check_project by framing this tool as the incremental variant. An agent can immediately understand what the tool does and how it differs from its nearest sibling.

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?

It explicitly instructs when to use this tool ('after editing specific files') and when to use the alternative ('use check_project for a full project scan'). It also gives concrete constraints on expected inputs, such as relative paths and no glob patterns, so an agent has actionable selection and invocation guidance.

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

check_projectA
Read-onlyIdempotent

Runs and clusters Oxlint and TypeScript (and optionally Biome) lint and type diagnostics for one or more project paths. Read-only; no files are written or modified. Paths default to the project root (".") when omitted; paths must be relative and within the project directory — absolute paths or paths outside the root return an error response. Use this for a full project scan; use check_files instead for faster incremental checks after editing specific files. Each call re-runs all enabled engines with no caching.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeNo
engineNo
statusYes
enginesNo
messageNo
clustersNo
truncatedNo
loopWarningNo
totalIssuesNo
schemaVersionNo
fileRuleChurnWarningNo
Behavior5/5

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

Beyond the annotations (readOnlyHint, idempotentHint, non-destructive), the description adds materially useful behavioral context: every call 're-runs all enabled engines with no caching,' paths default to the project root when omitted, and absolute/out-of-root paths 'return an error response.' It also rescans the tool's safety profile by stating 'Read-only; no files are written or modified,' which is consistent with the annotations — no contradiction.

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?

Four concise sentences, each earning its place: purpose/engines, read-only guarantee, path constraints/default, and the sibling differentiation plus no-caching behavior. Nothing repeats the schema, no filler, and the most important information (what it runs and on what) 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?

With only one optional parameter, read-only/idempotent annotations, and an output schema (so return values need no description), the definition covers all informational needs: scope, defaults, constraints, error cases, alternative tool routing, and runtime cost behavior. There is nothing relevant an agent would have to guess about calling this tool correctly.

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 a single param 'paths' but 0% description coverage, so the description carries the entire burden. It adds crucial meaning: paths are 'one or more project paths,' default to the project root '.' when omitted, and must be relative — absolute or out-of-root paths return errors. That transforms what would be an opaque string array into a fully understandable parameter.

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 pairing: 'Runs and clusters Oxlint and TypeScript (and optionally Biome) lint and type diagnostics for one or more project paths.' It names the exact diagnostics engines, explicitly differentiates from the sibling check_files, and clarifies the full-project scope, so an agent can distinguish it without opening any other tool.

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?

The description gives explicit when-to-use guidance: 'Use this for a full project scan; use check_files instead for faster incremental checks after editing specific files.' It names the alternative sibling and the condition that selects it, which is the clearest possible routing for an agent.

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

get_issue_detailA
Read-onlyIdempotent

Returns the full issue list for either one cluster ID or one issue ID from the most recent check_project or check_files call. Read-only; no files are written or modified. Supply exactly one of clusterId or issueId — supplying both or neither returns an argument error. If the referenced cluster or issue no longer exists in the latest results (e.g., after re-running a check), returns a status: "stale" response instead of an error; call check_project or check_files again to refresh.

ParametersJSON Schema
NameRequiredDescriptionDefault
issueIdNo
clusterIdNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeNo
issuesNo
statusNo
messageNo
Behavior5/5

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

Annotations already declare read-only and idempotent behavior. The description goes further by exposing the exact error case when both or neither parameter is supplied, and the stale response and recovery path. It also explicitly states 'no files are written or modified', reinforcing and not contradicting the annotations.

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?

Each sentence adds value: purpose, safety, parameter constraint, error behavior, and recovery path are all covered without unnecessary repetition. The description is structured with front-loaded actionable information.

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?

For a tool with two parameters, oneOf constraints, and an output schema, the description covers everything needed to call it correctly: source of IDs, required exclusivity, error and stale states, resolution, and side-effect-free behavior. Nothing critical is omitted.

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

Parameters4/5

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

Schema description coverage is 0%, but the description compensates by explaining that clusterId and issueId come from the most recent check_project or check_files result and that exactly one must be supplied. It doesn't fully define what an issueId vs clusterId represents or how they appear, but the connection to the previous check calls provides meaningful context beyond 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 states a specific verb and resource ('Returns the full issue list') and clearly delimits the input ('for either one cluster ID or one issue ID'). It also ties the tool to the results of check_project or check_files, making it easy to distinguish from its siblings even without checking the schema.

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?

The description explicitly places this tool after a check_project or check_files call and gives a concrete alternative when the result is stale: 'call check_project or check_files again to refresh.' This is a clear when-to-use and when-not-to-use distinction.

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

get_loop_statusA
Read-onlyIdempotent

Returns all diagnostic issue signatures currently flagged as looping (repeatedly appearing and disappearing) in this server session. Read-only; no files are written or modified. Loop history is accumulated across all check_project and check_files calls in this process lifetime, and is restored from .signalint/session.jsonl on startup. Takes no parameters. Use this to identify which diagnostics an agent is oscillating on; use check_project or check_files to run fresh diagnostics.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
loopingYes
signaturesYes
fileChurningYes
fileRuleChurnsYes
Behavior5/5

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

Although annotations already declare readOnly, idempotent, and non-destructive behavior, the description adds state-lifecycle context: loop history accumulates across all check_project and check_files calls and is restored from .signalint/session.jsonl on startup. It also confirms 'no files are written or modified,' which clarifies what the read-only hint actually guarantees.

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 tight and efficient: it opens with the return value and risk guarantee, then gives state lifecycle, parameter count, and usage routing. Every sentence adds useful signal and no filler is present.

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?

Given that the tool has no parameters, has an output schema, and conveys read-only behavior through annotations, the description is complete. It also clarifies how data is aggregated across sibling calls, how it is restored from session storage, and when to choose alternative tools.

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

Parameters4/5

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

The tool has 0 parameters, so the baseline is 4. The description explicitly says 'Takes no parameters' and the schema confirms an empty object with no additional properties. There is nothing further needed.

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 states a specific verb and resource: 'Returns all diagnostic issue signatures currently flagged as looping' and defines looping as repeatedly appearing and disappearing. It also distinguishes the tool from siblings like check_project and check_files by positioning it as the accumulated-history view rather than a fresh diagnostic runner.

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?

It explicitly tells agents when to use it: 'identify which diagnostics an agent is oscillating on.' It also names the alternatives for fresh diagnostics: 'use check_project or check_files to run fresh diagnostics.' This is clear, direct usage guidance.

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

pingA
Read-onlyIdempotent

Checks whether the Signalint MCP server is responsive. Read-only; returns the string "pong" with no side effects. Use this to verify the server is connected before running diagnostics. Invalid arguments return an error response; no authentication is required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
pongYesTrue when the server is responsive.
Behavior4/5

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

The description goes beyond the annotations by explaining the success output, error on invalid arguments, and lack of authentication. It also reinforces the read-only and side-effect-free behavior for the agent even if annotations were ignored.

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 short, front-loaded sentences with no filler. It covers purpose, use context, output, errors, and authentication without repeating schema details.

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?

For a trivial ping-style tool with rich annotations and an output schema, the description fully covers purpose, usage context, result, side-effect profile, error behavior, authentication, and read-only guarantee. Nothing material is missing.

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

Parameters4/5

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

The tool has zero parameters, so the schema already establishes that no arguments are valid. The description adds useful confirmation that invalid arguments will result in an error response, which is beneficial for correct invocation.

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 a specific verb and resource ('Checks whether the Signalint MCP server is responsive') and names the literal output ('pong'). This clearly differentiates it from the sibling tools that check loop status, projects, files, and issue details.

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 recommends using the tool to verify the server is connected before running diagnostics. It provides clear context for when to call it, though it does not state alternatives to avoid or mention exclusions.

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

A
license - permissive license
A
quality
A
maintenance

Maintenance

1dRelease cycle
11Releases (12mo)
Commit activity

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    An MCP server that integrates the high-performance Oxlint linter into AI-powered editors and development tools. It enables efficient JavaScript and TypeScript code analysis and linting through the Model Context Protocol.
    1
    12
    1
    Apache 2.0
  • A
    license
    A
    quality
    D
    maintenance
    A TypeScript-aware MCP server that provides coding agents with repository discovery, code intelligence, and web project context for local codebases. It enables deep symbol navigation, diagnostic reporting, and structural analysis of monorepos without requiring full IDE integration.
    7
    18
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    A lightweight MCP server that provides 40 tools for TypeScript/JavaScript refactoring and code intelligence, directly mapping to TypeScript's tsserver protocol commands for accurate structural changes and workspace analysis.
    40
    34
    3
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    An MCP server that provides TypeScript 7 native language server capabilities (go to definition, find references, hover types, diagnostics) to coding agents, using the Go-based tsc compiler for fast and accurate semantic analysis.
    146
    1
    MIT

View all 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/TranQui004/signalint'

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