100+ MCP Tools

The Complete Tool Catalog

Every tool your AI agent needs, organized by what it does. Local-first, security-verified, community-built.

98
Local Tools
10
API Tools
10
Categories
All
Free & Open
Category
Type
Status
Showing 108 of 108 tools

No tools match your filters

Try adjusting your search or filter criteria.

Security & Safety

Protect your codebase, detect threats, and reduce risk in your AI pipeline

12 tools

MCP Server Auditor

LOCAL Available

Analyze MCP server source code for security vulnerabilities, permission overreach, and suspicious patterns. Get risk scores and security grades.

npx @clinetools/mcp-auditor
How your agent uses it
Your agent will use this when you ask it to evaluate a new MCP server before installing it.
Direct it yourself
"Audit the MCP server at ./my-server for security issues"
View details

Prompt Injection Detector

LOCAL Available

Scan text, files, and inputs for 31+ prompt injection attack patterns including role switching, hidden instructions, data exfiltration, and jailbreak attempts.

npx @clinetools/prompt-detector
How your agent uses it
Agent scans untrusted inputs before processing them, catching injection attacks in user-supplied content.
Direct it yourself
"Scan this user input for prompt injection attempts"
View details

Secret Scanner

LOCAL Available

Detect leaked API keys, tokens, passwords, and credentials in code. Supports AWS, GitHub, OpenAI, Stripe, and 40+ provider patterns.

npx @clinetools/secret-scanner
How your agent uses it
Agent automatically scans files for leaked credentials when reviewing code or before commits.
Direct it yourself
"Scan this entire repo for leaked secrets and API keys"
View details

Permission Visualizer

LOCAL Available

Visualize and compare MCP server permission scopes. See attack surface scores and understand what each tool can access.

npx @clinetools/permission-viz
How your agent uses it
Agent displays permission comparisons when you're choosing between similar MCP servers.
Direct it yourself
"Compare the permissions of filesystem-server vs puppeteer-server"
View details

Scan package.json, requirements.txt, Cargo.toml, and go.mod for known CVEs. Offline database of vulnerabilities, no API needed.

npx @clinetools/dep-scanner
How your agent uses it
Agent checks dependencies for vulnerabilities when reviewing a project or before adding new packages.
Direct it yourself
"Scan all dependencies in this project for known vulnerabilities"
View details

Code Sanitizer

LOCAL Available

Strip dangerous patterns from code before execution: eval(), exec(), system calls, network requests. Configurable allowlists.

npx @clinetools/code-sanitizer
How your agent uses it
Agent sanitizes generated code before running it, removing potentially dangerous operations.
Direct it yourself
"Sanitize this code and show me what was removed before I run it"
View details

Output Validator

LOCAL Coming Soon

Verify AI-generated outputs match expected schemas, types, and constraints. Catch malformed JSON, invalid SQL, broken HTML before it ships.

npx @clinetools/output-validator
How your agent uses it
Agent validates its own outputs against schemas before writing files or making API calls.
Direct it yourself
"Validate this JSON output against the API schema in openapi.yaml"

File Access Monitor

LOCAL Available

Log and alert on file system operations during agent execution. See exactly which files were read, written, or deleted.

npx @clinetools/file-monitor
How your agent uses it
Runs in background during agent sessions, creating an audit trail of all file operations.
Direct it yourself
"Show me all files that were accessed during the last agent session"
View details

Network Traffic Inspector

LOCAL Available

Monitor and log all outgoing network requests from MCP servers. Detect unexpected data exfiltration or phone-home behavior.

npx @clinetools/net-inspector
How your agent uses it
Agent monitors network activity when testing new MCP servers to verify they only connect to expected endpoints.
Direct it yourself
"Monitor network traffic while I run this MCP server and report any suspicious connections"
View details

Credential Rotator

LOCAL Available

Detect exposed credentials and automatically rotate them. Supports .env files, config files, and CI/CD secrets.

npx @clinetools/cred-rotator
How your agent uses it
After detecting a leaked secret, agent offers to rotate it and update all references.
Direct it yourself
"This API key was exposed in a commit - rotate it and update all config files"
View details

Audit Log Generator

LOCAL Available

Generate compliance-ready audit logs of all agent actions: files modified, commands run, APIs called. Export as JSON, CSV, or Markdown reports.

npx @clinetools/audit-logger
How your agent uses it
Automatically records agent actions for review, compliance, and debugging.
Direct it yourself
"Generate an audit report of everything the agent did in this session"
View details

Sandboxed Code Executor

LOCAL Coming Soon

Run untrusted code in an isolated sandbox with configurable resource limits. Prevent filesystem, network, and process access.

npx @clinetools/sandbox
How your agent uses it
Agent runs generated code in sandbox first to verify behavior before applying changes to the real filesystem.
Direct it yourself
"Run this script in a sandbox and show me what it would do without actually modifying anything"

Code Quality & Analysis

Analyze, measure, and improve code quality with static analysis tools

10 tools

Code Complexity Analyzer

LOCAL Available

Calculate cyclomatic complexity, cognitive complexity, maintainability index, and Halstead metrics for any codebase. Supports JS/TS, Python, Go, Rust, Java.

npx @clinetools/complexity
How your agent uses it
Agent checks complexity when refactoring and suggests splitting functions that exceed thresholds.
Direct it yourself
"Analyze the complexity of all functions in src/ and flag anything over 15 cyclomatic complexity"
View details

Dead Code Detector

LOCAL Available

Find unused functions, variables, imports, exports, and CSS classes across your codebase. Supports tree-shaking analysis.

npx @clinetools/dead-code
How your agent uses it
Agent identifies dead code during cleanup tasks, reducing bundle size and maintenance burden.
Direct it yourself
"Find all unused exports and dead code in this project"
View details

Code Duplication Finder

LOCAL Coming Soon

Detect copy-paste patterns and near-duplicate code blocks. Suggest extraction into shared functions or modules.

npx @clinetools/dup-finder
How your agent uses it
Agent spots duplicated logic when reviewing code and suggests consolidation opportunities.
Direct it yourself
"Find all duplicated code blocks in src/ that should be extracted into shared utilities"

Type Coverage Checker

LOCAL Coming Soon

Measure TypeScript type coverage percentage. Find implicit 'any' types, missing return types, and untyped parameters.

npx @clinetools/type-coverage
How your agent uses it
Agent reports type coverage when working on TypeScript projects and adds types to weak spots.
Direct it yourself
"Check type coverage in this project and add types to the 10 most critical untyped functions"

Import Cycle Detector

LOCAL Available

Find circular dependencies between modules. Visualize dependency chains and suggest breaking points.

npx @clinetools/import-cycles
How your agent uses it
Agent checks for circular imports when restructuring modules or adding new dependencies.
Direct it yourself
"Find all circular import chains in this project and suggest how to break them"
View details

API Surface Analyzer

LOCAL Available

Map all public interfaces, exported functions, and API endpoints. Detect breaking changes between versions.

npx @clinetools/api-surface
How your agent uses it
Agent analyzes API surface when making changes to libraries to prevent accidental breaking changes.
Direct it yourself
"Compare the public API surface between v1.0 and current HEAD and list all breaking changes"
View details

Code Style Enforcer

LOCAL Available

Apply and enforce consistent code formatting beyond what Prettier/ESLint do: naming conventions, file organization, import ordering.

npx @clinetools/style-enforcer
How your agent uses it
Agent formats code to match project conventions when writing new files or refactoring.
Direct it yourself
"Enforce our naming conventions across all files in src/"
View details

Comment Quality Analyzer

LOCAL Available

Find outdated, misleading, or redundant comments. Detect TODO/FIXME/HACK markers. Score comment-to-code ratio.

npx @clinetools/comment-quality
How your agent uses it
Agent flags stale comments when modifying code and removes comments that no longer match the implementation.
Direct it yourself
"Find all comments that contradict the actual code behavior"
View details

Test Coverage Gap Finder

LOCAL Available

Identify untested code paths, uncovered branches, and functions without test files. Prioritize by risk and complexity.

npx @clinetools/coverage-gaps
How your agent uses it
Agent identifies missing tests when reviewing code and generates test stubs for uncovered functions.
Direct it yourself
"Find the 10 highest-risk untested functions and generate test stubs for them"
View details

Regex Analyzer & Tester

LOCAL Coming Soon

Analyze regex patterns for correctness, performance (ReDoS risk), and readability. Test against sample inputs.

npx @clinetools/regex-analyzer
How your agent uses it
Agent validates regex patterns when writing them, checking for catastrophic backtracking and edge cases.
Direct it yourself
"Analyze all regex patterns in this codebase for ReDoS vulnerabilities"

Project Understanding

Help your agent understand codebases faster with analysis and visualization tools

10 tools

Codebase Mapper

LOCAL Available

Generate visual dependency graphs, module maps, and architecture diagrams from source code. Output as Mermaid, DOT, or JSON.

npx @clinetools/codebase-mapper
How your agent uses it
Agent maps the codebase structure when starting work on an unfamiliar project.
Direct it yourself
"Map the architecture of this project and show me the dependency graph"
View details

Architecture Documenter

LOCAL Available

Auto-generate architecture documentation from code analysis: module responsibilities, data flows, integration points.

npx @clinetools/arch-doc
How your agent uses it
Agent generates architecture docs when onboarding to a new project or when docs are missing.
Direct it yourself
"Generate architecture documentation for this project including all data flows"
View details

API Endpoint Cataloger

LOCAL Available

Discover and catalog all API routes, endpoints, middleware, and handlers. Supports Express, Fastify, Next.js, Django, Flask, Rails.

npx @clinetools/api-lister
How your agent uses it
Agent catalogs endpoints when working on API changes to understand the full surface area.
Direct it yourself
"List all API endpoints in this project with their methods, middleware, and handler functions"
View details

Database Schema Visualizer

LOCAL Coming Soon

Parse migration files, ORM models, and SQL schemas to generate ER diagrams and relationship maps.

npx @clinetools/schema-viz
How your agent uses it
Agent visualizes database relationships when writing queries or planning migrations.
Direct it yourself
"Visualize the database schema from our Prisma models and show all relationships"

Catalog all environment variables used across the codebase. Detect missing .env entries, unused vars, and inconsistencies.

npx @clinetools/env-tracker
How your agent uses it
Agent checks for missing environment variables when setting up a project or debugging config issues.
Direct it yourself
"Find all environment variables used in this project and check which ones are missing from .env"
View details

Config File Validator

LOCAL Available

Validate JSON, YAML, TOML, and INI config files against schemas. Detect typos, missing required fields, and type mismatches.

npx @clinetools/config-validator
How your agent uses it
Agent validates config files when editing them, catching errors before they cause runtime failures.
Direct it yourself
"Validate all config files in this project and fix any issues"
View details

Git History Analyzer

LOCAL Available

Analyze git history patterns: hotspot files, churn rate, contributor patterns, commit message quality, branch age.

npx @clinetools/git-analyzer
How your agent uses it
Agent identifies high-churn files that need attention and understands code ownership patterns.
Direct it yourself
"Show me the top 20 most frequently changed files and who owns each area of the codebase"
View details

TODO/FIXME Tracker

LOCAL Available

Catalog all TODO, FIXME, HACK, XXX, and WORKAROUND markers. Prioritize by age, severity, and location.

npx @clinetools/todo-tracker
How your agent uses it
Agent surfaces relevant TODOs when working near them and can prioritize tech debt cleanup.
Direct it yourself
"Find all TODOs and FIXMEs in this project, sorted by age, and create issues for the critical ones"
View details

License Compliance Checker

LOCAL Available

Scan all dependencies for license compatibility. Flag GPL contamination, missing licenses, and compliance risks.

npx @clinetools/license-check
How your agent uses it
Agent checks license compatibility when adding new dependencies to prevent legal issues.
Direct it yourself
"Check all dependencies for license compliance and flag any GPL or restricted licenses"
View details

Build Pipeline Analyzer

LOCAL Coming Soon

Parse CI/CD configs (GitHub Actions, GitLab CI, CircleCI) and visualize build stages, dependencies, and bottlenecks.

npx @clinetools/pipeline-analyzer
How your agent uses it
Agent understands the build pipeline when troubleshooting CI failures or optimizing build times.
Direct it yourself
"Analyze our GitHub Actions workflows and suggest optimizations for build speed"

Testing & Quality Assurance

Generate tests, create fixtures, and catch regressions automatically

10 tools

Test Generator

LOCAL Available

Generate unit tests from function signatures, JSDoc comments, and usage patterns. Supports Jest, Vitest, pytest, Go testing.

npx @clinetools/test-gen
How your agent uses it
Agent generates tests alongside new code, covering happy paths, edge cases, and error scenarios.
Direct it yourself
"Generate comprehensive unit tests for all functions in src/utils/"
View details

Test Fixture Generator

LOCAL Available

Create realistic test fixtures from database schemas, API responses, and TypeScript types. Faker-powered data generation.

npx @clinetools/fixture-gen
How your agent uses it
Agent creates test data when writing tests, generating realistic fixtures that match your schemas.
Direct it yourself
"Generate test fixtures for all our Prisma models with realistic sample data"
View details

Mock API Server

LOCAL Available

Generate a mock API server from OpenAPI/Swagger specs. Serve realistic responses without hitting real APIs.

npx @clinetools/mock-api
How your agent uses it
Agent spins up mock servers when testing API integrations, enabling offline development.
Direct it yourself
"Create a mock server from our OpenAPI spec and run it on port 3001"
View details

Snapshot Tester

LOCAL Coming Soon

Capture and compare output snapshots. Detect UI changes, API response drift, and CLI output differences.

npx @clinetools/snapshot
How your agent uses it
Agent takes snapshots before changes and compares after to catch unintended side effects.
Direct it yourself
"Take a snapshot of all API responses before and after this refactor"

Edge Case Generator

LOCAL Available

Analyze function signatures and generate boundary value test cases: empty strings, zero, negative numbers, unicode, huge inputs.

npx @clinetools/edge-cases
How your agent uses it
Agent suggests edge cases when reviewing functions that handle user input or external data.
Direct it yourself
"Generate edge case test inputs for all functions that accept user input"
View details

API Contract Tester

LOCAL Available

Verify API contracts between frontend and backend. Detect schema mismatches, missing fields, and type incompatibilities.

npx @clinetools/contract-test
How your agent uses it
Agent verifies API contracts when making changes to either frontend or backend code.
Direct it yourself
"Verify that all frontend API calls match the backend's actual response schemas"
View details

Accessibility Tester

LOCAL Coming Soon

Check HTML output for WCAG 2.1 compliance: missing alt text, color contrast, keyboard navigation, ARIA labels, heading hierarchy.

npx @clinetools/a11y-test
How your agent uses it
Agent checks accessibility when generating HTML or modifying UI components.
Direct it yourself
"Run an accessibility audit on all HTML pages and fix any WCAG violations"

Run micro-benchmarks on functions and compare performance across implementations. Track regression over time.

npx @clinetools/benchmark
How your agent uses it
Agent benchmarks before and after optimization changes to verify improvements.
Direct it yourself
"Benchmark the old and new implementations of this sorting function and show the difference"
View details

Regression Detector

LOCAL Available

Compare test results, API responses, and behavior between git commits. Flag regressions with precise cause identification.

npx @clinetools/regression
How your agent uses it
Agent runs regression checks after making changes to verify nothing broke.
Direct it yourself
"Check for regressions between main and this branch"
View details

Mutation Tester

LOCAL Available

Mutate source code and verify tests catch the mutations. Find weak tests that pass even when code is broken.

npx @clinetools/mutation-test
How your agent uses it
Agent evaluates test quality by checking if tests actually catch real bugs.
Direct it yourself
"Run mutation testing on src/core/ to find tests that aren't actually testing anything"

Data & File Processing

Transform, validate, and process data files without external services

10 tools

JSON/CSV/XML Converter

LOCAL Coming Soon

Transform between data formats: JSON, CSV, XML, YAML, TOML, TSV. Handle nested structures, arrays, and custom delimiters.

npx @clinetools/data-convert
How your agent uses it
Agent converts data formats when integrating different systems or preparing data for analysis.
Direct it yourself
"Convert this CSV file to JSON with nested objects based on the column naming convention"
View details

Schema Generator

LOCAL Coming Soon

Infer JSON Schema, TypeScript types, or Zod schemas from data samples. Handle nullable fields, enums, and nested objects.

npx @clinetools/schema-gen
How your agent uses it
Agent generates type definitions from API responses or data files when types are missing.
Direct it yourself
"Generate TypeScript types from these 5 API response samples"

Data Anonymizer

LOCAL Available

Replace PII (names, emails, phone numbers, addresses, SSNs) with realistic fake data. Consistent replacement across files.

npx @clinetools/anonymizer
How your agent uses it
Agent anonymizes sensitive data before including it in bug reports, test fixtures, or documentation.
Direct it yourself
"Anonymize all PII in this database dump while keeping the data structure intact"
View details

File Format Validator

LOCAL Available

Verify file integrity: valid JSON, well-formed XML, correct CSV headers, valid images. Check encoding, line endings, BOM markers.

npx @clinetools/file-validator
How your agent uses it
Agent validates file formats before processing them, catching corruption early.
Direct it yourself
"Validate all JSON files in config/ and fix any formatting issues"
View details

Image Optimizer

LOCAL Coming Soon

Compress PNG, JPEG, SVG, and WebP images without quality loss. Generate responsive sizes and modern formats.

npx @clinetools/image-opt
How your agent uses it
Agent optimizes images when adding them to projects, reducing bundle size automatically.
Direct it yourself
"Optimize all images in public/images/ and generate WebP alternatives"

SVG Cleaner & Optimizer

LOCAL Available

Clean and optimize SVG files: remove metadata, simplify paths, minify, remove unused defs. Reduce file sizes by 30-80%.

npx @clinetools/svg-clean
How your agent uses it
Agent cleans SVGs when adding icons or illustrations to reduce page load time.
Direct it yourself
"Clean and optimize all SVG files in assets/icons/"
View details

Markdown Linter & Fixer

LOCAL Available

Validate markdown syntax, fix heading hierarchy, broken links, inconsistent list styles, and missing alt text.

npx @clinetools/md-lint
How your agent uses it
Agent lints markdown when editing docs, README files, and blog posts.
Direct it yourself
"Lint and fix all markdown files in docs/"
View details

Log Parser & Analyzer

LOCAL Available

Parse structured and unstructured logs into queryable data. Support for JSON logs, syslog, Apache, Nginx, and custom formats.

npx @clinetools/log-parser
How your agent uses it
Agent parses log files when debugging issues, extracting relevant error patterns and timelines.
Direct it yourself
"Parse these error logs and group them by error type with frequency counts"
View details

SQL Query Analyzer

LOCAL Coming Soon

Analyze SQL queries for performance: missing indexes, N+1 patterns, full table scans, suboptimal joins. Suggest improvements.

npx @clinetools/sql-analyzer
How your agent uses it
Agent reviews SQL queries when writing database code and suggests index and optimization improvements.
Direct it yourself
"Analyze all SQL queries in this codebase and suggest performance improvements"

Config Merger

LOCAL Coming Soon

Intelligently merge configuration files: handle conflicts, preserve comments, maintain ordering. Support for JSON, YAML, TOML.

npx @clinetools/config-merge
How your agent uses it
Agent merges configs when combining features, resolving conflicts intelligently.
Direct it yourself
"Merge the development and production configs, highlighting all differences"

AI Pipeline & Agent Tools

Tools specifically designed to improve AI agent workflows and pipelines

10 tools

Prompt Template Manager

LOCAL Coming Soon

Version, manage, and A/B test prompt templates. Track which prompts produce the best results over time.

npx @clinetools/prompt-mgr
How your agent uses it
Agent loads optimized prompts for specific tasks and tracks which versions perform best.
Direct it yourself
"Load the 'code-review' prompt template v3 and use it for this review"

Response Cache

LOCAL Available

Cache AI responses for identical or similar inputs. Reduce API costs and latency for repeated operations.

npx @clinetools/response-cache
How your agent uses it
Agent caches responses to avoid redundant API calls when asking similar questions.
Direct it yourself
"Enable response caching for this session to reduce API usage"
View details

Context Window Manager

LOCAL Available

Analyze and optimize what fits in the context window. Prioritize recent, relevant, and high-value content. Track token budgets.

npx @clinetools/context-mgr
How your agent uses it
Agent manages its context window efficiently, loading only what's needed for the current task.
Direct it yourself
"Show me what's currently in the context window and suggest what can be removed"
View details

Token Budget Tracker

LOCAL Available

Monitor token usage across sessions, tasks, and tools. Set budgets, get alerts, and optimize for cost efficiency.

npx @clinetools/token-tracker
How your agent uses it
Agent monitors token spend and adjusts verbosity when approaching budget limits.
Direct it yourself
"Show me token usage for this week broken down by task"
View details

Hallucination Detector

LOCAL Coming Soon

Cross-reference AI claims against source code, documentation, and known facts. Flag potentially fabricated function names, APIs, or configuration options.

npx @clinetools/hallucination
How your agent uses it
Agent verifies its own suggestions against the actual codebase before presenting them.
Direct it yourself
"Verify all function names and API references in this generated code actually exist in our codebase"

Source Attribution Tracker

LOCAL Coming Soon

Link AI-generated claims and suggestions to their source: which file, which commit, which documentation page informed each decision.

npx @clinetools/attribution
How your agent uses it
Agent provides citations for its suggestions, linking to the actual source code or docs.
Direct it yourself
"For each suggestion you make, cite the source file and line number"

Conversation Brancher

LOCAL Coming Soon

Save conversation state at decision points and branch to explore alternatives. Compare outcomes and merge the best approach.

npx @clinetools/conv-branch
How your agent uses it
Agent saves checkpoints before risky changes, enabling rollback if the approach doesn't work.
Direct it yourself
"Save a checkpoint here - let's try two different approaches and compare"

Agent Task Decomposer

LOCAL Available

Break complex tasks into smaller, parallelizable subtasks. Identify dependencies, estimate effort, and suggest execution order.

npx @clinetools/task-decompose
How your agent uses it
Agent decomposes large tasks into manageable steps with clear dependencies.
Direct it yourself
"Break this feature request into subtasks I can work through one at a time"
View details

Tool Call Validator

LOCAL Coming Soon

Validate MCP tool calls before execution: check parameters, verify permissions, estimate side effects. Dry-run mode available.

npx @clinetools/call-validator
How your agent uses it
Agent validates its own tool calls before executing them, especially for destructive operations.
Direct it yourself
"Enable dry-run mode - show me what each tool call would do without actually running it"

Persistent Agent Memory

LOCAL Available

Give your agent persistent memory across sessions: learned patterns, user preferences, project conventions, past decisions.

npx @clinetools/agent-memory
How your agent uses it
Agent remembers past decisions, learned patterns, and user preferences across sessions.
Direct it yourself
"Remember that we always use camelCase in this project"

Development Workflow

Streamline your development workflow with automation tools

10 tools

Commit Message Generator

LOCAL Coming Soon

Generate conventional commit messages from staged diffs. Analyze changes and produce semantic, descriptive messages.

npx @clinetools/commit-msg
How your agent uses it
Agent generates commit messages that follow project conventions when you're ready to commit.
Direct it yourself
"Generate a commit message for these staged changes following conventional commits"

PR Description Generator

LOCAL Coming Soon

Generate pull request descriptions from commit history and code diffs. Include summary, test plan, and breaking changes.

npx @clinetools/pr-desc
How your agent uses it
Agent writes PR descriptions when you create pull requests, summarizing all changes.
Direct it yourself
"Generate a PR description for this branch including all changes since diverging from main"

Code Review Checklist

LOCAL Coming Soon

Automated code review against configurable standards: security, performance, accessibility, maintainability, test coverage.

npx @clinetools/review-check
How your agent uses it
Agent runs review checklist on code before it's submitted for human review.
Direct it yourself
"Run the full code review checklist on this PR before I submit it"

Migration Script Generator

LOCAL Coming Soon

Generate database migration scripts from schema diffs. Support for Prisma, Knex, TypeORM, Django, Alembic.

npx @clinetools/migration-gen
How your agent uses it
Agent generates migration scripts when you modify database models or schemas.
Direct it yourself
"Generate a migration for adding the 'status' column to the users table"

Changelog Generator

LOCAL Coming Soon

Auto-generate changelogs from git history, PR descriptions, and conventional commits. Output as CHANGELOG.md or JSON.

npx @clinetools/changelog
How your agent uses it
Agent generates changelog entries when preparing releases.
Direct it yourself
"Generate the changelog for v2.0 from all commits since v1.9"

Semantic Version Bumper

LOCAL Coming Soon

Analyze changes and suggest the correct version bump (major/minor/patch). Update package.json, tags, and references.

npx @clinetools/version-bump
How your agent uses it
Agent suggests the correct version bump based on the changes in the release.
Direct it yourself
"Analyze the changes since last release and bump the version accordingly"

Branch Cleanup Tool

LOCAL Coming Soon

Identify stale, merged, and orphaned branches. Safe cleanup with dry-run mode and protection for active branches.

npx @clinetools/branch-clean
How your agent uses it
Agent identifies branches that can be safely deleted during repository maintenance.
Direct it yourself
"List all merged and stale branches that can be safely deleted"

Git Hooks Manager

LOCAL Coming Soon

Install and manage git hooks: pre-commit, pre-push, commit-msg. Template library with common hooks for linting, testing, secrets scanning.

npx @clinetools/git-hooks
How your agent uses it
Agent sets up git hooks when initializing projects or when security gaps are detected.
Direct it yourself
"Set up pre-commit hooks for linting, type-checking, and secret scanning"

Monorepo Navigator

LOCAL Coming Soon

Understand monorepo structure: find affected packages from changes, resolve workspace dependencies, identify build order.

npx @clinetools/monorepo-nav
How your agent uses it
Agent navigates monorepo workspaces, understanding which packages are affected by changes.
Direct it yourself
"Which packages are affected by changes to the shared/utils package?"

Release Notes Writer

LOCAL Coming Soon

Generate user-facing release notes from technical changelogs. Transform developer commit messages into product updates.

npx @clinetools/release-notes
How your agent uses it
Agent translates technical changes into user-friendly release notes for product communications.
Direct it yourself
"Write release notes for this version that non-technical users can understand"

Infrastructure & DevOps

Generate configs, check infrastructure, and automate DevOps tasks

10 tools

Dockerfile Optimizer

LOCAL Coming Soon

Analyze and optimize Dockerfiles: multi-stage builds, layer caching, image size reduction, security best practices.

npx @clinetools/dockerfile-opt
How your agent uses it
Agent optimizes Dockerfiles when building containerized applications.
Direct it yourself
"Optimize this Dockerfile for smaller image size and better layer caching"

Docker Compose Generator

LOCAL Coming Soon

Generate docker-compose.yml from application analysis: detect databases, caches, message queues, and service dependencies.

npx @clinetools/compose-gen
How your agent uses it
Agent generates Docker Compose files when setting up development environments.
Direct it yourself
"Generate a docker-compose.yml for this project with all required services"

Nginx Config Generator

LOCAL Coming Soon

Generate Nginx reverse proxy, SSL, and caching configurations from application requirements.

npx @clinetools/nginx-gen
How your agent uses it
Agent generates Nginx configs when setting up deployments or reverse proxies.
Direct it yourself
"Generate an Nginx config for this app with SSL, gzip, and caching headers"

SSL Certificate Checker

LOCAL Coming Soon

Check SSL certificate expiration, chain validity, and security configuration for domains and local certs.

npx @clinetools/ssl-check
How your agent uses it
Agent checks certificate status when debugging HTTPS issues or monitoring infrastructure.
Direct it yourself
"Check the SSL certificate for our production domain and warn if it expires within 30 days"

Local Port Scanner

LOCAL Coming Soon

Check port availability, find what's listening, and resolve port conflicts. Local-only scanning for development use.

npx @clinetools/port-scan
How your agent uses it
Agent checks for port conflicts when starting development servers.
Direct it yourself
"What's currently listening on ports 3000-3100 on this machine?"

Process Monitor

LOCAL Coming Soon

Track CPU, memory, and disk usage of running processes. Detect resource leaks and runaway processes.

npx @clinetools/proc-monitor
How your agent uses it
Agent monitors resource usage when debugging performance issues or memory leaks.
Direct it yourself
"Monitor this process for 60 seconds and report CPU and memory usage patterns"

Disk Space Analyzer

LOCAL Coming Soon

Find large files, duplicate files, and wasted space. Identify node_modules, build artifacts, and temp files consuming disk.

npx @clinetools/disk-analyzer
How your agent uses it
Agent identifies disk space issues when builds fail due to insufficient space.
Direct it yourself
"Find the top 20 largest files and directories in this project"

Cron Expression Validator

LOCAL Coming Soon

Validate cron expressions, show next N execution times, and convert between cron formats (Linux, AWS, Kubernetes).

npx @clinetools/cron-check
How your agent uses it
Agent validates cron expressions when configuring scheduled tasks.
Direct it yourself
"Validate this cron expression and show me the next 10 execution times"

GitHub Actions Generator

LOCAL Coming Soon

Generate GitHub Actions workflows from project analysis: CI, CD, release automation, dependency updates.

npx @clinetools/actions-gen
How your agent uses it
Agent creates CI/CD workflows when setting up new projects or improving existing pipelines.
Direct it yourself
"Generate a GitHub Actions workflow for CI with linting, testing, and deployment"

Terraform Plan Analyzer

LOCAL Coming Soon

Parse and analyze Terraform plans: highlight destructive changes, cost estimates, security implications.

npx @clinetools/tf-analyzer
How your agent uses it
Agent reviews Terraform plans before apply, flagging risky changes and estimating costs.
Direct it yourself
"Analyze this Terraform plan and highlight any destructive or expensive changes"

Documentation & Communication

Generate, validate, and maintain documentation automatically

8 tools

README Generator

LOCAL Coming Soon

Generate comprehensive README.md from code analysis: project structure, installation, usage, API docs, contributing guide.

npx @clinetools/readme-gen
How your agent uses it
Agent generates README when creating new projects or when existing docs are outdated.
Direct it yourself
"Generate a comprehensive README for this project"

API Documentation Generator

LOCAL Coming Soon

Generate OpenAPI/Swagger specs from code, route handlers, and TypeScript types. Produce interactive API docs.

npx @clinetools/api-doc
How your agent uses it
Agent generates API documentation when endpoints are created or modified.
Direct it yourself
"Generate OpenAPI documentation for all API endpoints in this project"

JSDoc/TSDoc Generator

LOCAL Coming Soon

Add documentation comments to functions, classes, and interfaces. Infer parameter types, return values, and descriptions from code.

npx @clinetools/jsdoc-gen
How your agent uses it
Agent adds JSDoc comments when documentation coverage is low or when writing new code.
Direct it yourself
"Add JSDoc comments to all exported functions in src/"

Diagram Generator

LOCAL Coming Soon

Generate Mermaid, PlantUML, and D2 diagrams from code: sequence diagrams, class diagrams, flowcharts, ER diagrams.

npx @clinetools/diagram-gen
How your agent uses it
Agent creates diagrams when explaining complex code flows or architecture.
Direct it yourself
"Generate a sequence diagram for the user authentication flow"

Runbook Generator

LOCAL Coming Soon

Create operational runbooks from code, configs, and infrastructure: incident response, deployment procedures, troubleshooting guides.

npx @clinetools/runbook-gen
How your agent uses it
Agent generates runbooks when setting up production infrastructure.
Direct it yourself
"Generate a deployment runbook for this application"

Architecture Decision Record Generator

LOCAL Coming Soon

Create ADRs (Architecture Decision Records) with context, decision, consequences, and alternatives considered.

npx @clinetools/adr-gen
How your agent uses it
Agent creates ADRs when making significant architectural decisions.
Direct it yourself
"Create an ADR for our decision to use PostgreSQL over MongoDB"

Project Glossary Builder

LOCAL Coming Soon

Build a project-specific glossary from code: extract domain terms, acronyms, and technical jargon with definitions.

npx @clinetools/glossary
How your agent uses it
Agent builds glossaries when onboarding to domain-heavy codebases.
Direct it yourself
"Build a glossary of all domain-specific terms used in this codebase"

Onboarding Guide Generator

LOCAL Coming Soon

Create new developer onboarding guides: setup instructions, codebase tour, key concepts, common tasks, and troubleshooting.

npx @clinetools/onboarding-gen
How your agent uses it
Agent creates onboarding docs when the team grows or documentation is lacking.
Direct it yourself
"Generate an onboarding guide for a new developer joining this project"

Monitoring & Observability

Monitor, measure, and debug applications locally

8 tools

Error Pattern Analyzer

LOCAL Coming Soon

Categorize and prioritize errors from logs and stack traces. Identify root causes, frequency patterns, and affected code paths.

npx @clinetools/error-analyzer
How your agent uses it
Agent analyzes error logs when debugging, grouping related errors and identifying root causes.
Direct it yourself
"Analyze these error logs and group them by root cause with fix suggestions"

Performance Profiler

LOCAL Coming Soon

Profile Node.js, Python, and Go applications: identify CPU bottlenecks, memory hotspots, and slow database queries.

npx @clinetools/profiler
How your agent uses it
Agent profiles applications when performance issues are reported, identifying bottlenecks.
Direct it yourself
"Profile this API endpoint and identify the three biggest performance bottlenecks"

Memory Leak Detector

LOCAL Coming Soon

Detect memory leaks in Node.js applications: growing arrays, unclosed connections, event listener accumulation, circular references.

npx @clinetools/memleak
How your agent uses it
Agent checks for memory leaks when applications show increasing memory usage.
Direct it yourself
"Monitor this process for memory leaks and identify the source"

API Health Checker

LOCAL Coming Soon

Monitor API endpoint health: response times, status codes, payload validation. Run locally against dev or staging environments.

npx @clinetools/api-health
How your agent uses it
Agent checks API health when debugging connectivity issues or verifying deployments.
Direct it yourself
"Check the health of all API endpoints and report any that are slow or failing"

Response Time Tracker

LOCAL Coming Soon

Measure and track API response times over time. Generate percentile reports (p50, p95, p99) and identify degradation.

npx @clinetools/resp-time
How your agent uses it
Agent tracks response times when optimizing performance, comparing before and after.
Direct it yourself
"Measure response times for all API endpoints 100 times each and show p50/p95/p99"

Resource Usage Reporter

LOCAL Coming Soon

Generate reports on system resource usage: CPU, memory, disk, network. Track trends and set alerting thresholds.

npx @clinetools/resource-report
How your agent uses it
Agent monitors resources when applications behave unexpectedly under load.
Direct it yourself
"Generate a resource usage report for the last hour of this application running"

Local Log Aggregator

LOCAL Coming Soon

Collect and search logs from multiple local services. Tail, filter, and correlate logs across processes.

npx @clinetools/log-agg
How your agent uses it
Agent searches across multiple log sources when debugging issues that span services.
Direct it yourself
"Aggregate logs from all running services and search for errors in the last 5 minutes"

Flame Graph Generator

LOCAL Coming Soon

Generate flame graphs from CPU profiles. Visualize where time is spent in your application with interactive SVG output.

npx @clinetools/flamegraph
How your agent uses it
Agent generates flame graphs when profiling performance-critical code paths.
Direct it yourself
"Generate a flame graph for this function to visualize where time is being spent"

API-Dependent Tools (Alternatives Planned)

Tools that currently require external APIs. We're building local alternatives for each one.

10 tools

Web Search

API Available

Search the web from your agent. Currently uses Brave Search API.

npx @modelcontextprotocol/server-brave-search
How your agent uses it
Agent searches the web when it needs current information not in its training data.
Direct it yourself
"Search the web for the latest React 19 migration guide"
Planning local web index with Common Crawl data

GitHub Integration

API Available

Create PRs, manage issues, search code on GitHub. Requires GitHub API token.

npx @modelcontextprotocol/server-github
How your agent uses it
Agent creates PRs and manages issues when working on GitHub-hosted projects.
Direct it yourself
"Create a PR for this branch with a description of all changes"
Git-only alternative for local repos without GitHub API

Slack Integration

API Available

Send messages, read channels, and manage Slack workspaces from your agent.

npx @modelcontextprotocol/server-slack
How your agent uses it
Agent posts updates to team channels when completing tasks or encountering issues.
Direct it yourself
"Post a summary of today's changes to the #dev-updates channel"
Local notification system with desktop alerts

Sentry Error Monitoring

API Available

View issues, stack traces, and error trends from Sentry. Debug production errors with full context.

npx @modelcontextprotocol/server-sentry
How your agent uses it
Agent investigates Sentry errors, pulling stack traces and context for debugging.
Direct it yourself
"Show me the top 5 unresolved Sentry issues and suggest fixes"
Local error aggregation from log files

Notion Integration

API Available

Read and write Notion pages, databases, and wikis. Sync project docs with your codebase.

npx @modelcontextprotocol/server-notion
How your agent uses it
Agent reads project specs from Notion and updates documentation as code changes.
Direct it yourself
"Sync the API documentation from our Notion wiki to the docs/ folder"
Local markdown wiki with full-text search

Linear Integration

API Available

Manage issues, projects, and sprints in Linear from your agent.

npx @modelcontextprotocol/server-linear
How your agent uses it
Agent creates and updates Linear issues as it works through tasks.
Direct it yourself
"Create a Linear issue for each TODO found in this codebase"
Local issue tracking with git-based storage

Google Drive Integration

API Available

Read files from Google Drive, search documents, and sync specs with your project.

npx @modelcontextprotocol/server-gdrive
How your agent uses it
Agent reads design specs and requirements docs stored in Google Drive.
Direct it yourself
"Find the latest product spec in Google Drive and summarize the requirements"
Local file sync with offline-first approach

Cloudflare Integration

API Available

Manage Workers, KV, R2, D1, and DNS from your agent. Deploy and configure edge infrastructure.

npx @modelcontextprotocol/server-cloudflare
How your agent uses it
Agent deploys Workers and manages edge infrastructure during development.
Direct it yourself
"Deploy this Worker to Cloudflare and set up a KV namespace for it"
Local Workers dev server with Miniflare

PostgreSQL Integration

API Available

Connect to PostgreSQL databases, run queries, inspect schemas, and manage data.

npx @modelcontextprotocol/server-postgres
How your agent uses it
Agent queries databases when debugging data issues or writing migration scripts.
Direct it yourself
"Show me the schema of the users table and write a migration to add an email_verified column"
SQLite-based local alternative for development

Image Generator

API Available

Generate images from text descriptions using AI image generation APIs.

npx @modelcontextprotocol/server-everart
How your agent uses it
Agent generates placeholder images, icons, and illustrations for projects.
Direct it yourself
"Generate a hero image for the landing page with a dark theme tech aesthetic"
Local Stable Diffusion integration (planned)