Pare
Wraps ansible commands to return structured JSON output for configuration management.
Wraps bazel commands to return structured JSON output for building and testing.
Wraps biome commands to provide structured JSON output for formatting and linting.
Wraps bun commands to provide structured JSON output for runtime and package management.
Wraps cmake commands to provide structured JSON output for building C/C++ projects.
Wraps curl commands to return structured JSON output for HTTP requests.
Wraps deno commands to provide structured JSON output for runtime and package management.
Wraps docker commands to provide structured JSON output for container management.
Wraps esbuild commands to provide structured JSON output for bundling and minification.
Wraps eslint commands to provide structured JSON output for code linting.
Wraps git commands to return structured JSON output for repository status, commits, branches, diffs, and more, enabling AI agents to perform version control operations programmatically.
Wraps gh CLI commands to provide structured JSON output for managing repositories, issues, pull requests, and other GitHub operations.
Wraps gradle commands to return structured JSON output for building JVM projects.
Wraps helm commands to return structured JSON output for Kubernetes package management.
Wraps jest commands to return structured JSON output for test execution and results.
Wraps mysql commands to provide structured JSON output for database queries.
Wraps npm commands (install, audit, etc.) to return structured JSON output for package management operations.
Wraps prettier commands to return structured JSON output for code formatting.
Wraps pytest commands to provide structured JSON output for test execution and results.
Wraps pip commands to provide structured JSON output for Python package management.
Wraps redis-cli commands to return structured JSON output for key-value store operations.
Wraps gem commands to return structured JSON output for Ruby package management.
Wraps cargo commands to return structured JSON output for building, testing, and managing Rust projects.
Wraps swift commands to provide structured JSON output for package management and builds.
Wraps terraform commands to provide structured JSON output for infrastructure as code.
Wraps trivy commands to provide structured JSON output for container and vulnerability scanning.
Wraps tsc commands to return structured JSON output for TypeScript compilation.
Wraps vite commands to return structured JSON output for frontend build tooling.
Wraps vitest commands to return structured JSON output for test execution and results.
Wraps webpack commands to provide structured JSON output for bundling.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Parecheck git status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Reliable, structured CLI output for AI agents — no more parsing fragile terminal text.
Pare provides MCP servers that wrap common developer tools (git, npm, docker, test runners, etc.) and return clean, schema-validated JSON instead of raw terminal text. Agents get typed data they can act on directly, without brittle string parsing.
The Problem
Parsing CLI output is fragile. Raw terminal text includes ANSI escape codes, decorative headers, progress bars, locale-specific formatting, and platform differences that break agent workflows in subtle ways. An agent that works fine with git status on macOS may fail on Windows because the output format changed. A test runner's summary line might shift between versions, silently breaking a regex.
Pare eliminates this entire class of errors by returning schema-validated JSON with consistent field names, regardless of platform, tool version, or locale. As a bonus, structured output is significantly smaller — agents use fewer tokens per tool call:
Tool Command | Raw Tokens | Pare Tokens | Reduction |
| 373 | 20 | 95% |
| 4,992 | 382 | 92% |
| 241 | 41 | 83% |
| 196 | 39 | 80% |
| 436 | 138 | 68% |
| 288 | 101 | 65% |
| 351 | 190 | 46% |
| 287 | 185 | 36% |
Token estimates use ~4 chars/token. The biggest savings appear on verbose commands (builds, installs, tests). For simpler tools like
eslintortsc, the main advantage is reliable structured data — agents can use typed JSON directly rather than parsing strings.
How It Works
Each Pare tool returns two outputs:
content— human-readable text, for MCP clients that display itstructuredContent— typed, schema-validated JSON, ready for agents to process
This uses MCP's structuredContent and outputSchema features to provide type-safe, validated data that agents can rely on without custom parsing.
Example: git status
Raw git output (~118 tokens):
On branch main
Your branch is ahead of 'origin/main' by 2 commits.
(use "git push" to publish your local commits)
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: src/index.ts
new file: src/utils.ts
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: README.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
temp.logPare structured output (~59 tokens):
{
"branch": "main",
"upstream": "origin/main",
"ahead": 2,
"staged": [
{ "file": "src/index.ts", "status": "modified" },
{ "file": "src/utils.ts", "status": "added" }
],
"modified": ["README.md"],
"deleted": [],
"untracked": ["temp.log"],
"conflicts": [],
"clean": false
}50% fewer tokens. Zero information lost. Fully typed. Savings scale with output verbosity — test runners and build logs see 80–92% reduction.
Available Servers (28 packages, 240 tools)
Install only the servers relevant to your stack — most projects need just 2–4. The full catalog covers a wide range of ecosystems so Pare works wherever you do.
Category | Servers | Tools | Wraps |
Version Control | 55 | git, gh | |
Languages & Packages | npm, python, cargo, go, deno, bun, nix, dotnet, ruby, swift, jvm | 101 | npm, pip, cargo, go, deno, bun, nix, dotnet, gem, swift, gradle, maven |
Build, Lint & Test | 23 | tsc, esbuild, vite, webpack, eslint, prettier, biome, vitest, pytest, jest | |
Infrastructure | 40 | docker, kubectl, helm, terraform, ansible, trivy, ssh | |
Utilities | 21 | ripgrep, fd, curl, make, just, psql, mysql, redis, mongosh |
Tool Schemas — detailed response examples and field descriptions for every tool. See also Tool Response Examples for quick JSON samples.
Quick Setup
# 1. Configure MCP servers (non-interactive)
npx @paretools/init --client claude-code --preset web
# 2. Add agent rules to your project
# (append to existing CLAUDE.md, or copy if new)
cat node_modules/@paretools/init/rules/CLAUDE.md >> CLAUDE.md
# 3. Restart your client session
# 4. Validate
npx @paretools/init doctorAvailable presets: web, python, rust, go, jvm, dotnet, ruby, swift, mobile, devops, full
Setup Guides by Client
Full Quickstart Guide — presets, ecosystem mapping, validation
Manual Configuration — config paths and formats for all clients
Agent Integration Guide — rule files, hooks, CLI-to-MCP mapping
Configuration
Tool Selection
By default, every Pare server registers all of its tools. If a server exposes tools you don't need — or you want to limit which tools are available to an agent — you can filter them with environment variables.
Per-server filter — restrict a single server's tools:
# Only register status and log in the git server
PARE_GIT_TOOLS=status,log npx @paretools/gitUniversal filter — restrict tools across all servers:
# Only register these specific tools across any server
PARE_TOOLS=git:status,git:log,npm:install npx @paretools/gitDisable all tools — set the env var to an empty string:
PARE_GIT_TOOLS= npx @paretools/git # no tools registeredEnv Var | Scope | Format | Example |
| All servers |
|
|
| One server |
|
|
Rules:
No env var = all tools enabled (default)
PARE_TOOLS(universal) takes precedence over per-server varsServer names use uppercase with hyphens replaced by underscores (e.g.,
PARE_MY_SERVER_TOOLS)Whitespace around commas is ignored
Common patterns:
# Read-only git (no push, commit, add, checkout)
PARE_GIT_TOOLS=status,log,diff,branch,show
# Minimal npm
PARE_NPM_TOOLS=install,test,run
# Only specific tools across all servers
PARE_TOOLS=git:status,git:diff,npm:install,test:runIn JSON MCP config, set via the env key:
{
"mcpServers": {
"pare-git": {
"command": "npx",
"args": ["-y", "@paretools/git"],
"env": {
"PARE_GIT_TOOLS": "status,log,diff,show"
}
}
}
}Troubleshooting
Issue | Solution |
| Use |
Slow first start | Run |
Node.js version error | Pare requires Node.js >= 20 |
NVM/fnm PATH issues | Use absolute path to |
MCP connection timeout | Set |
Too many tools filling context | Use tool selection env vars to limit tools, or only install the servers you need |
Contributing
Each server is a self-contained package. See CONTRIBUTING.md for the full guide.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dave-London/Pare'
If you have feedback or need assistance with the MCP directory API, please join our Discord server