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

@paretools/make

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paretools/make

MCP server for Make/Just — structured task listing and execution output for AI agents

latest
Source
npmnpm
Version
0.22.0
Version published
Weekly downloads
240
112.39%
Maintainers
1
Weekly downloads
 
Created
Source

@paretools/make

npm License: MIT

Structured, token-efficient task runner output for AI agents. Wraps Make and Just with typed JSON output.

Part of the Pare suite of MCP servers.

Tools (2)

ToolDescription
runRun a make/just target, returns exit code, stdout, stderr, duration
listList available targets with descriptions

Auto-detects whether to use just (if Justfile present) or make (if Makefile present). Can be overridden per-call.

Quick Start

npx -y @paretools/make

Add to your MCP client config:

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

Example

list output:

{
  "targets": [
    { "name": "build", "description": "Build the project" },
    { "name": "test", "description": "Run all tests" },
    { "name": "clean" }
  ],
  "total": 3,
  "tool": "just"
}

Prerequisites

  • GNU Make and/or Just

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