Back to Browse

Qatouch MCP Server

Developer ToolsUse Caution4.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP Server for software testing, test case management, test execution, and defect tracking.

About

MCP Server for software testing, test case management, test execution, and defect tracking.

Security Report

4.2
Use Caution4.2High Risk

This QA Touch MCP server is a well-structured tool integration that properly requires authentication via environment variables. The codebase demonstrates good error handling and input validation patterns. However, there are concerns about inadequate input validation in some tools, missing security checks on file operations, and analytics tracking that could expose sensitive request data. The server's permissions align well with its purpose as a test management API client. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.

7 files analyzed · 13 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

What You'll Need

Set these up before or after installing:

Your QA Touch subdomain (for example: abc if your URL is https://abc.qatouch.com)Optional

Environment variable: QATOUCH_DOMAIN

QA Touch Personal API TokenRequired

Environment variable: QATOUCH_API_TOKEN

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-qatouch-qatouch": {
      "env": {
        "QATOUCH_DOMAIN": "your-qatouch-domain-here",
        "QATOUCH_API_TOKEN": "your-qatouch-api-token-here"
      },
      "args": [
        "-y",
        "qatouch-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

QA Touch MCP Server

Official Model Context Protocol (MCP) server for QA Touch.

QA Touch is a modern test management platform for organizing projects, test cases, test runs, execution results, defects, requirements, releases, and QA reporting. This MCP server lets MCP-compatible AI assistants interact with QA Touch through a secure, tool-based interface.

QA Touch - Claude Skills Repository - https://github.com/qatouch/qatouch-claude-skills

Features

  • List and count QA Touch projects
  • Create projects
  • List and search test cases
  • Create structured, bulk, exploratory, and text-template test cases
  • List, count, search, and create modules
  • List, count, search, and create releases/milestones
  • List, count, search, and create requirements and requirement documents
  • List, count, search, and create defects
  • List defect statuses, severities, issue types, and environments
  • List test runs, test run results, result history, and available statuses
  • Update single or batch test run result statuses
  • List users available for test execution
  • Search across project test cases, modules, requirements, defects, and releases
  • List QA Touch workspaces

Requirements

  • Node.js 18+
  • npm
  • QA Touch API token
  • QA Touch domain

Installation

Run directly with npx:

npx -y qatouch-mcp-server

Or install globally:

npm install -g qatouch-mcp-server
qatouch-mcp-server

The server requires these environment variables:

QATOUCH_DOMAIN=yourdomain
QATOUCH_API_TOKEN=yourtoken

Claude Desktop Setup

Add this server to your Claude Desktop MCP configuration.

Windows config location:

%APPDATA%\Claude\claude_desktop_config.json

macOS config location:

~/Library/Application Support/Claude/claude_desktop_config.json

Linux config location:

~/.config/Claude/claude_desktop_config.json

Configuration:

{
  "mcpServers": {
    "qatouch": {
      "command": "npx",
      "args": [
        "-y",
        "qatouch-mcp-server"
      ],
      "env": {
        "QATOUCH_DOMAIN": "yourdomain",
        "QATOUCH_API_TOKEN": "yourtoken"
      }
    }
  }
}

Restart Claude Desktop after saving the file.

Available Tools

ToolDescription
count_all_projectsGet the total number of QA Touch projects available for the domain
count_defectsGet the total number of defects available for a QA Touch project
count_modulesGet the total number of modules available for a QA Touch project
count_releasesGet the total number of releases available for a QA Touch project
count_requirementsGet the total number of requirements available for a QA Touch project
count_test_casesGet the total number of test cases available for a QA Touch project
count_test_runsGet the total number of test runs available for a QA Touch project
create_bulk_test_casesCreate multiple QA Touch test cases from a scenario
create_defectCreate a QA Touch defect with priority and issue summary
create_exploratory_test_caseCreate a QA Touch exploratory-session test case without structured steps
create_moduleCreate a module in a QA Touch project
create_projectCreate a new QA Touch project
create_releaseCreate a new release or milestone in a QA Touch project
create_requirementCreate a requirement in a QA Touch project requirement document
create_requirement_documentCreate a requirement document in a QA Touch project
create_test_run_with_modulesCreate a new test run by selecting one or more module keys
create_test_caseCreate a QA Touch test case with structured steps
create_text_test_caseCreate a QA Touch test case using the text template endpoint
import_test_casesImport test cases into a QA Touch project using a CSV file
list_defect_environmentsList all environments available for QA Touch defects
list_defect_issue_typesList all issue types available for QA Touch defects
list_defect_severitiesList all severities available for QA Touch defects
list_defect_statusesList all statuses available for QA Touch defects
list_defectsGet all defects from a project
list_modulesGet all modules from a project
list_projectsRetrieve all QA Touch projects
list_releasesGet all releases from a project
list_requirement_documentsList requirement documents for a QA Touch project
list_requirementsGet all requirements from a project
list_test_casesGet all test cases from a project
list_test_run_available_usersList users available for testing in a QA Touch project
list_test_run_result_historyList history for a QA Touch test run result
list_test_run_resultsList all results for a QA Touch test run
list_test_run_statusesList all statuses available for QA Touch test runs
list_test_runsGet all test runs from a project
list_workspaceList all QA Touch workspaces available for the domain
search_defectsFetch defects for a project and search issue summary
search_modulesFetch modules for a project and search module name
search_projectSearch test cases, modules, requirements, defects, and releases in a project
search_releasesFetch releases for a project and search milestone name
search_requirementsFetch requirements for a project and search title and description
search_test_casesFetch all test cases for a project and search test case title and description
update_test_run_result_statusUpdate the status of a single QA Touch test run result
update_test_run_results_by_codeBatch update QA Touch test run result statuses by test case code

Example Prompts

  • List all QA Touch projects
  • Count all QA Touch projects
  • Create a project named Mobile App Regression
  • Show test cases from project ABC
  • Search test cases containing "login" in project ABC
  • Create a login test case in project ABC under section AUTH
  • Create 8 regression test cases for checkout in project ABC under section CHECKOUT
  • Import test cases from /path/to/testcases.csv into project ABC
  • List modules from project ABC
  • Create a module named Payment Gateway in project ABC
  • List releases from project ABC
  • Create release "June Regression" in project ABC
  • List requirements from project ABC
  • Search requirements containing "password reset" in project ABC
  • List requirement documents in project ABC
  • Create a requirement document named Login Requirements for release REL1 in project ABC
  • Create a requirement for valid login in document DOC1
  • List defects from project ABC
  • Show high priority defects in project ABC
  • Search defects containing "timeout" in project ABC
  • Create a high priority defect in project ABC for checkout payment timeout
  • List test runs from project ABC
  • Create a test run named "Regression Run" in project "v7Nz" using modules "2BQXR" and "VeRDL", assign it to user "M7" under milestone "0DLB"
  • Show test run results for test run RUN1 in project ABC
  • Show result history for result RES1 in test run RUN1
  • List available test run statuses
  • Mark result RES1 as failed in test run RUN1 for project ABC
  • Batch update TC-101 as passed and TC-102 as blocked in test run RUN1
  • List testers available for project ABC
  • Search project ABC for "login"
  • Generate a QA status report for project ABC
  • Identify unexecuted test cases in test run RUN1
  • For more📖 Prompt Examples: how_to_use.txt

Development

Install dependencies:

npm install

Run the MCP server locally:

npm start

Environment variables are required when running locally:

QATOUCH_DOMAIN=yourdomain QATOUCH_API_TOKEN=yourtoken npm start

This repository currently defines only the start script in package.json.

Project Structure

src/
  api/          QA Touch API client
  config/       Environment variable validation
  tools/        MCP tool definitions and handlers
  index.js      MCP server entry point and tool registration
examples/       Prompt and client setup examples

Contributing

Contributions are welcome. See CONTRIBUTING.md for development workflow, coding standards, and pull request guidance.

License

This project is licensed under the MIT License.

Reviews

No reviews yet

Be the first to review this server!