Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Signalint
S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:18:22 AM

Signalint

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Local stdio MCP server for cached, loop-aware JS/TypeScript diagnostics (Oxlint, tsc, Biome).

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "signalint": {
      "command": "npx",
      "args": [
        "-y",
        "signalint"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Signalint

CI npm version

Listed on:

  • TranQui004/signalint MCP server
  • mcpservers.org
  • Official MCP Registry (API listing)

Signalint is a local MCP server for JavaScript and TypeScript diagnostics. It runs Oxlint, TypeScript, and optionally Biome; caches unchanged checks; clusters repeated issues; and warns when the same diagnostic disappears and repeatedly returns. Loop history is restored from valid .signalint/session.jsonl entries when the MCP server restarts; malformed or crash-truncated lines are skipped.

Requirements

  • Node.js 20.19 or later in the Node 20 line, or Node.js 22.12 or later
  • A JavaScript or TypeScript project; TypeScript checks require a tsconfig.json
  • pnpm 11.9.0 for source development

Install

Install Signalint in the project it should check:

Terminal
npm install --save-dev signalint-mcp

Run the setup command from that project root. It detects TypeScript, Oxlint, and Biome configuration, writes signalint.config.json, and offers to update a nearby Claude Code, Cursor, Codex CLI, or Antigravity MCP configuration:

Terminal
npx signalint-mcp init

If no MCP client can be selected safely, the command prints exact configuration snippets to copy. TypeScript is enabled only when a root tsconfig.json exists; Biome is enabled when its config exists; Oxlint is the fallback when no configured linter is detected. To configure Signalint manually, create signalint.config.json:

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

Claude Code setup

Run this from the checked project. Project scope writes a shareable .mcp.json:

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

On native Windows, wrap npx as required by Claude Code:

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

Restart Claude Code if it was already open. Ask it to call Signalint's ping tool, then call check_project with { "paths": ["."] }.

See the Claude Code MCP documentation for scope and troubleshooting details.

Cursor setup

Create .cursor/mcp.json in the checked project:

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

On native Windows use "command": "cmd" and "args": ["/c", "npx", "--no-install", "signalint-mcp"]. Open Cursor's MCP settings, enable signalint, and call ping followed by check_project.

See the Cursor MCP documentation for configuration locations and status controls.

Codex CLI setup

The ChatGPT desktop app, Codex CLI, and IDE extension share a single configuration file. The quick-add command writes to ~/.codex/config.toml (global) automatically:

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

For project-scoped configuration (trusted projects only), add to .codex/config.toml in the project root:

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

On native Windows, use cmd and pass npx as an argument:

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

See the Codex MCP documentation for all configuration options including cwd, env, and per-tool approval settings.

Setting up with Antigravity

Antigravity uses its own MCP configuration file. The path that has been verified through dogfooding on Windows is: %USERPROFILE%\.gemini\antigravity\mcp_config.json.

The init command can update this file after confirmation. The equivalent Windows configuration is:

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

On macOS or Linux, use "command": "npx" and "args": ["--no-install", "signalint-mcp"]. Restart or reconnect Antigravity after updating the configuration.

Note on Antigravity product variants: Antigravity has split into separate products (IDE, CLI, SDK). Each variant may use a different config path β€” the IDE path above is the one confirmed working; other variants may use ~/.gemini/config/mcp_config.json or a project-scoped .agents/mcp_config.json. See antigravity.google/docs/mcp for the authoritative list per product.

Windows troubleshooting

Windows .cmd shims created by npm link can expose a junction path to Node. If signalint-mcp ends with an initialize/EOF error or signalint stats exits with code 0 but prints nothing, bypass the shim with the compiled entrypoint paths:

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

Current builds canonicalize linked paths before deciding whether to start, but direct Node invocation remains the reliable fallback for older builds or unusual npm setups.

Configuration

engines.oxlint, engines.tsc, and engines.biome are booleans. Defaults are Oxlint and tsc enabled, Biome disabled. Omitted engine keys retain those defaults. Unknown keys and incorrectly typed values fail with a configuration error.

ignore is an array of project-relative globs. Signalint supports *, **, and ?, normalizes Windows separators, and excludes matching requested paths and diagnostics. Because tsc is a whole-program engine, it still receives the complete tsconfig.json program when invoked; ignored TypeScript paths do not trigger an incremental check_files run and their diagnostics are removed from the response.

Engine-native configuration remains in native files. The v1 cache hash recognizes root .oxlintrc, .oxlintrc.json, oxlint.json, tsconfig.json, biome.json, and biome.jsonc. Changing one invalidates the related engine cache. Other valid sourcesβ€”including .oxlintrc.jsonc, extended configs, and nested package configsβ€” are not part of v1 cache hashing; clear .signalint/ after changing one of them.

timeoutsMs sets positive-integer subprocess deadlines in milliseconds. Defaults are 30 seconds for Oxlint, 120 seconds for tsc, and 30 seconds for Biome. A timed-out engine and its child processes are terminated. In the schema 1.1 check response, that engine has { "status": "error", "message": "tsc did not complete within 120s" } under engines, while completed engines' diagnostics are preserved.

Known Limitations

  • Signalint supports JavaScript and TypeScript projects only.
  • The built-in engines are Oxlint, TypeScript, and Biome; v1 does not support arbitrary custom engines.
  • Signalint reports whether an issue has a structured fix, but v1 does not apply fixes.
  • Signalint is not a SAST or security scanner.
  • There is no IDE extension yet; integrations use MCP or the command-line client.
  • Loop detection is deliberately limited to lint, type, and test issue signatures; it does not detect general agent-conversation loops.
  • The tsc adapter requires one tsconfig.json at the project root. Monorepos must provide a solution-style root config using TypeScript Project References; Signalint does not auto-discover independent package configs.
  • check_files treats only the files explicitly passed to that call as relevant to TypeScript cache invalidation. If file A changes but is omitted while unchanged file B is checked, and B depends on A, Signalint can reuse a stale tsc result. Include every changed dependency file or run check_project; dependency-graph-based invalidation is not implemented in v1.

MCP tools

  • ping checks that the local server is connected and returns pong.
  • check_project accepts optional { "paths": ["."] } and returns clustered diagnostics.
  • check_files accepts { "files": ["src/file.ts"] } and uses incremental caching.
  • get_issue_detail accepts exactly one clusterId or issueId from the latest successful check and returns its full issues, or a status: "stale" response.
  • get_loop_status returns issue signatures currently flagged as oscillating.

Cache and session artifacts are written under .signalint/ and should not be committed.

CLI and package smoke test

Run the same project check without an MCP client:

Terminal
npx --no-install signalint check .

After MCP checks have accumulated in .signalint/session.jsonl, print the Phase 6 measurement summary:

Terminal
npx --no-install signalint stats

The report includes average normalized-raw-to-clustered JSON payload reduction, engine-file cache hit rate, average and maximum check latency, and the number of distinct issue signatures that triggered loop warnings. An engine-file lookup counts each enabled engine separately, so one changed TypeScript file can miss once for Oxlint and once for tsc. Latency covers handler work from MCP tool entry through engine/cache work, clustering, and loop evaluation; it excludes the telemetry append and stdio transport. Statistics include the active session log and its rotated .1 backup, with their retained overlap counted once. Clean checks with zero raw payload are excluded from the reduction average, and older checks with missing metrics remain counted without contributing to the unavailable aggregate.

The CLI exits with code 1 when issues are found. Two flags support CI use: --format github prints one GitHub Actions annotation (::error file=...,line=...,col=...::message or ::warning ...) per issue instead of JSON, and --fail-on-priority <N> exits non-zero only if a cluster's priority is at or below N instead of on any issue found.

To exercise an actual MCP check_project call against the installed package, run:

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

GitHub Actions

action.yml at the repository root wraps signalint check as a composite action for CI. It installs Node, installs signalint-mcp from npm, and runs the check with --format github so issues appear as inline annotations on the pull request diff:

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

fail-on-priority defaults to 5, which fails the job on any issue found, matching signalint check's default behavior without the flag. Lower values only fail the job when a cluster is at least that urgent: priority 1 is an error with no structured fix, and priority increases toward 5 as issues become more fixable or more systemic (see scorePriority in src/cluster/clusterEngine.ts).

Development

pnpm 11.9.0 is the canonical package manager for source development. The repository commits pnpm-lock.yaml, declares pnpm in package.json, and uses pnpm in CI.

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

If a global npm shim cannot find npm-cli.js, build directly with node node_modules/typescript/bin/tsc -p tsconfig.json.

Before preparing a release, use npm pack --dry-run and verify the packed tarball in a clean project. Publishing requires explicit release approval.

Security

See SECURITY.md for the current npm audit advisory, its evaluated runtime reachability, and the conditions that require reassessment.

Documentation

  • Website β€” overview, docs, and live examples.
  • ARCHITECTURE.md β€” how the layers fit together and what each module does.
  • CONTRIBUTING.md β€” development setup, verification, and pull requests.
  • AGENTS.md β€” coding standards for this repository.
  • SECURITY.md β€” threat model, trust boundaries, and audit status.
  • CHANGELOG.md β€” notable changes by release.
  • docs/history/ β€” original build plan and pre-launch audit trail.

License

Signalint is available under the MIT License.

Related MCP Servers

View all in Developer Tools View all alternatives
  • F
    Funplay Cocos MCP

    stdio bridge for the local Cocos Creator Editor MCP server from FunplayAI/funplay-cocos-mcp.

    πŸ’» Developer Tools0 views
    Compare vs Funplay Cocos MCP β†’
  • F
    Funplay Godot MCP

    stdio bridge for the local Godot Editor MCP server from FunplayAI/funplay-godot-mcp.

    πŸ’» Developer Tools0 views
    Compare vs Funplay Godot MCP β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’

Frequently Asked Questions about Signalint

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "signalint": { "command": "npx", "args": ["-y", "signalint"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSignalint AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/signalint?style=directory)](https://allmcps.com/mcp/signalint)
HTML Embed
<a href="https://allmcps.com/mcp/signalint"><img src="https://allmcps.com/api/badge/signalint?style=directory" alt="Signalint on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Signalint β†’Install in Claude DesktopInstall in CursorInstall in VS Code