Qlty CLI

The free Qlty CLI is a polyglot, Rust-based command-line tool for universal linting, auto-formatting, security scanning, code smells, duplication, and maintainability metrics. It runs 70+ static analysis tools across 40+ languages natively (no Docker), is configured via a .qlty/qlty.toml file, and is free for all use including commercial projects. The CLI is a local developer tool, not an HTTP API; key commands include qlty init, qlty check, qlty fmt, qlty smells, qlty metrics, and qlty coverage publish.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/qlty-cli"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

qlty-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Qlty API
  description: >-
    Qlty is a code quality and coverage platform consisting of the free,
    open (Fair Source) Qlty CLI and the hosted Qlty Cloud service. As of this
    catalog entry, Qlty does not publish a documented public REST/HTTP API.


    Code quality analysis (linting, formatting, security scanning, code smells,
    duplication, and maintainability metrics) is performed by the Rust-based
    Qlty CLI, which is a local command-line tool rather than an HTTP service.
    Configuration lives in a .qlty/qlty.toml file in the Git repository.


    Code coverage is uploaded to Qlty Cloud with the CLI command
    `qlty coverage publish <report-file>`, authenticated by a per-project
    `QLTY_COVERAGE_TOKEN` environment variable. Supported report formats include
    lcov, Cobertura, Clover, JaCoCo, SimpleCov, dotCover, and xccov-json. The
    upload destination is handled internally by the CLI / GitHub Action and is
    not exposed as a documented public REST endpoint.


    Qlty Cloud itself (automated pull request review, quality gates, trends, and
    dashboards) is consumed through Git provider integrations (GitHub App /
    Action) and the web application, not through a documented public HTTP API.


    Because no public HTTP endpoints are documented, the paths object below is
    intentionally empty. This document will be updated if and when Qlty publishes
    a public API reference. No endpoints are fabricated here.
  termsOfService: https://qlty.sh/terms
  contact:
    name: Qlty Support
    url: https://qlty.sh/
  license:
    name: Fair Source (Business Source License 1.1) for the Qlty CLI
    url: https://github.com/qltysh/qlty/blob/main/LICENSE.md
  version: '1.0'
servers:
  - url: https://qlty.sh
    description: >-
      Qlty website and CLI install host (curl https://qlty.sh | sh). Not a
      documented public REST API base URL.
tags:
  - name: CLI
    description: Qlty CLI commands (qlty init, check, fmt, smells, metrics).
  - name: Coverage
    description: Coverage publishing via `qlty coverage publish` with QLTY_COVERAGE_TOKEN.
  - name: Cloud
    description: Qlty Cloud hosted analysis, PR review, quality gates, and dashboards.
paths: {}
components:
  securitySchemes:
    coverageToken:
      type: apiKey
      in: header
      name: QLTY_COVERAGE_TOKEN
      description: >-
        Per-project coverage token, supplied as the QLTY_COVERAGE_TOKEN
        environment variable to `qlty coverage publish`. Documented as a CLI
        environment variable, not a documented public REST API header.