🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@paretools/lint

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paretools/lint

MCP server for linters — structured ESLint, Prettier, and Biome diagnostics for AI agents

latest
Source
npmnpm
Version
0.22.0
Version published
Weekly downloads
92
-69.54%
Maintainers
1
Weekly downloads
 
Created
Source

@paretools/lint

npm License: MIT

Structured, token-efficient linter output for AI agents. Typed diagnostics from ESLint, Prettier, and Biome.

Part of the Pare suite of MCP servers.

Tools (5)

ToolDescription
lintESLint diagnostics (file, line, rule, severity, message)
format-checkPrettier check — list of files needing formatting
prettier-formatFormat files with Prettier (--write), returns changed files
biome-checkBiome check (lint + format) with structured diagnostics
biome-formatFormat files with Biome (--write), returns changed files

Quick Start

npx -y @paretools/lint

Add to your MCP client config:

{
  "mcpServers": {
    "pare-lint": {
      "command": "npx",
      "args": ["-y", "@paretools/lint"]
    }
  }
}

Example

lint output:

{
  "files": [
    {
      "file": "src/index.ts",
      "messages": [
        {
          "line": 10,
          "column": 3,
          "severity": "error",
          "rule": "no-unused-vars",
          "message": "'foo' is defined but never used."
        }
      ]
    }
  ],
  "errorCount": 1,
  "warningCount": 0
}

All Pare Servers (244 tools)

PackageToolsWraps
@paretools/gitstatus, log, diff, branch, show, add, commit, push, pull, checkoutgit
@paretools/testrun, coveragepytest, jest, vitest, mocha
@paretools/npminstall, audit, outdated, list, run, test, initnpm
@paretools/buildtsc, build, esbuild, vite-build, webpacktsc, esbuild, vite, webpack
@paretools/lintlint, format-check, prettier-format, biome-check, biome-formateslint, prettier, biome
@paretools/pythonpip-install, mypy, ruff-check, pip-audit, pytest, uv-install, uv-run, blackpip, mypy, ruff, pytest, uv, black
@paretools/dockerps, build, logs, images, run, exec, compose-up, compose-down, pulldocker, docker compose
@paretools/cargobuild, test, clippy, run, add, remove, fmt, doc, checkcargo
@paretools/gobuild, test, vet, run, mod-tidy, fmt, generatego, gofmt

Compatible Clients

Works with any MCP-compatible client: Claude Code, Claude Desktop, Cursor, Windsurf, VS Code / GitHub Copilot, Cline, Roo Code, Zed, Continue.dev, Gemini CLI, OpenAI Codex

License

MIT

Keywords

mcp

FAQs

Package last updated on 29 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts