Best for
- AI agents that require structured, typed output.
- Developers who need consistent behavior across environments without platform-specific quirks.
- Those looking to reduce token consumption and improve reliability.
Pare Make is a useful MCP server for converting make/just task execution into structured JSON, reducing agent parsing overhead. It is part of the larger Pare ecosystem, offering consistent output. However, it is a standalone server and does not include other Pare tools.
Pare Make is an MCP server within the Pare project that provides structured, typed JSON output for task runners such as make and just, replacing fragile text parsing. The server exposes two tools: run (execute a task) and list (enumerate available tasks). It returns schema-validated data via MCP's structuredContent, allowing AI agents to act on the data directly without parsing raw terminal output. It is published as the npm package @paretools/make and communicates over stdio.
{
"mcpServers": {
"pare-make": {
"command": "npx",
"args": ["-y", "@paretools/make"]
}
}
}
npx -y @paretools/make.{
"mcpServers": {
"pare-make": {
"command": "npx",
"args": [
"-y",
"@paretools/make"
]
}
}
}