Sign In

@paretools/build

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/build

MCP server for build tools — structured TypeScript, esbuild, vite, and webpack output for AI agents

latest
Source
npmnpm
Version
0.22.0
Version published
Weekly downloads
128
-60.12%
Maintainers
1
Weekly downloads
 
Created
Source

@paretools/build

npm License: MIT

Structured, token-efficient build tool output for AI agents. Up to 68% fewer tokens than raw build CLI output.

Part of the Pare suite of MCP servers.

Tools (5)

ToolDescription
tscTypeScript compiler diagnostics (file, line, column, code)
buildGeneric build command with structured error/warning output
esbuildesbuild bundler with structured errors and output files
vite-buildVite production build with structured output file sizes
webpackwebpack build with structured assets, errors, and warnings

Quick Start

npx -y @paretools/build

Add to your MCP client config:

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

Example

tsc output:

{
  "success": false,
  "errors": [
    {
      "file": "src/index.ts",
      "line": 42,
      "column": 5,
      "code": 2322,
      "severity": "error",
      "message": "Type 'string' is not assignable to type 'number'."
    }
  ],
  "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