Skip to main content
Glama

Signalint

CI npm version M8ven Score

Signalint은 JavaScript 및 TypeScript 진단을 위한 로컬 MCP 서버입니다. Oxlint, TypeScript, 그리고 선택적으로 Biome을 실행하고, 변경되지 않은 검사는 캐시하며, 반복되는 이슈를 클러스터링하고, 동일한 진단이 사라졌다가 반복적으로 다시 나타날 때 경고합니다. 루프 기록은 MCP 서버가 재시작될 때 유효한 .signalint/session.jsonl 항목에서 복원되며, 손상되었거나 크래시로 잘린 줄은 건너뜁니다.

등재처:

진단 압축 예시

코딩 에이전트가 프로젝트에 대한 진단을 요청하면, 원시 컴파일러 및 린터 출력은 여러 파일에 걸친 반복적인 오류로 컨텍스트 창을 빠르게 채웁니다. 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 20 라인의 Node.js 20.19 이상, 또는 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 클라이언트가 없으면, 명령은 복사할 정확한 구성 스니펫을 출력합니다. TypeScript는 루트 tsconfig.json이 존재할 때만 활성화되고, Biome은 해당 구성이 존재할 때 활성화되며, 구성된 린터가 감지되지 않으면 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을 활성화한 다음, pingcheck_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"]

cwd, env, 도구별 승인 설정을 포함한 모든 구성 옵션은 Codex MCP 문서를 참조하세요.

Antigravity 설정

Antigravity는 자체 MCP 구성 파일을 사용합니다. Windows에서 도그푸딩을 통해 검증된 경로는 다음과 같습니다: %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.oxlint, engines.tsc, engines.biome은 부울 값입니다. 기본값은 Oxlint와 tsc가 활성화되고 Biome이 비활성화된 상태입니다. 생략된 엔진 키는 해당 기본값을 유지합니다. 알 수 없는 키와 잘못된 유형의 값은 구성 오류로 실패합니다.

ignore는 프로젝트 상대 글로브 배열입니다. Signalint은 *, **, ?를 지원하고, Windows 구분자를 정규화하며, 일치하는 요청 경로와 진단을 제외합니다. tsc는 전체 프로그램 엔진이므로 호출 시 여전히 완전한 tsconfig.json 프로그램을 받습니다. 무시된 TypeScript 경로는 증분 check_files 실행을 트리거하지 않으며 해당 진단은 응답에서 제거됩니다.

엔진 고유 구성은 네이티브 파일에 유지됩니다. v1 캐시 해시는 루트 .oxlintrc, .oxlintrc.json, oxlint.json, tsconfig.json, biome.json, biome.jsonc를 인식합니다. 하나를 변경하면 관련 엔진 캐시가 무효화됩니다. .oxlintrc.jsonc, 확장 구성, 중첩된 패키지 구성을 포함한 기타 유효한 소스는 v1 캐시 해싱에 포함되지 않습니다. 이 중 하나를 변경한 후에는 .signalint/를 지우십시오.

timeoutsMs는 양의 정수 서브프로세스 데드라인을 밀리초 단위로 설정합니다. 기본값은 Oxlint 30초, tsc 120초, Biome 30초입니다. 시간 초과된 엔진과 그 자식 프로세스는 종료됩니다. 스키마 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 또는 명령줄 클라이언트를 사용합니다.

  • 루프 감지는 의도적으로 린트, 타입, 테스트 이슈 시그니처로 제한되며, 일반적인 에이전트 대화 루프는 감지하지 않습니다.

  • tsc 어댑터는 프로젝트 루트에 하나의 tsconfig.json이 필요합니다. 모노레포는 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은 최신 성공적인 검사에서 정확히 하나의 clusterId 또는 issueId를 받아 전체 이슈를 반환하거나, 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 백업이 포함되며, 유지된 중복은 한 번만 계산됩니다. 원시 페이로드가 0인 정리 검사는 감소율 평균에서 제외되고, 메트릭이 누락된 이전 검사는 사용할 수 없는 집계에 기여하지 않으면서 계속 계산됩니다.

CLI는 이슈가 발견되면 코드 1로 종료됩니다. CI 사용을 지원하는 두 가지 플래그가 있습니다: --format github는 JSON 대신 이슈당 하나의 GitHub Actions 어노테이션(::error file=...,line=...,col=...::message 또는 ::warning ...)을 출력하고, --fail-on-priority <N>은 발견된 이슈가 아닌 클러스터의 우선순위가 N 이하일 때만 0이 아닌 코드로 종료합니다.

설치된 패키지에 대해 실제 MCP check_project 호출을 실행하려면 다음을 실행합니다:

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

GitHub Actions

저장소 루트의 action.ymlsignalint check를 CI용 복합 액션으로 감쌉니다. Node를 설치하고, npm에서 signalint-mcp를 설치하며, --format github로 검사를 실행하여 이슈가 풀 리퀘스트 diff에 인라인 어노테이션으로 표시되도록 합니다:

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

fail-on-priority의 기본값은 5이며, 플래그 없이 signalint check의 기본 동작과 일치하게 이슈가 발견되면 작업을 실패시킵니다. 더 낮은 값은 클러스터가 최소한 그만큼 긴급할 때만 작업을 실패시킵니다: 우선순위 1은 구조화된 수정이 없는 오류이며, 이슈가 더 수정 가능하거나 더 체계적일수록 우선순위는 5를 향해 증가합니다(src/cluster/clusterEngine.tsscorePriority 참조).

개발

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 라이선스에 따라 제공됩니다.

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