Qase MCP Server

by RayYokoyama

1 stars
164 downloads
Not rated
GitHub

Description

# Qase MCP Server Qaseのテスト管理プラットフォームと連携するためのModel Context Protocol (MCP) サーバーです。 テストケースの作成、取得、テスト実行の管理などの機能を提供します。 ## セットアップ ### 前提条件 - Node.js v23.5.0 - Qase APIトークン - TypeScript ### インストール ```bash # パッケージのインストール npm install # ビルド npm run build ``` ### 環境設定…

About

# Qase MCP Server Qaseのテスト管理プラットフォームと連携するためのModel Context Protocol (MCP) サーバーです。 テストケースの作成、取得、テスト実行の管理などの機能を提供します。 ## セットアップ ### 前提条件 - Node.js v23.5.0 - Qase APIトークン - TypeScript ### インストール ```bash # パッケージのインストール npm install # ビルド npm run build ``` ### 環境設定 MCPの設定ファイル(`cline_mcp_settings.json`)に以下の設定を追加します: ```json {…

Details

Author
RayYokoyama
GitHub stars
1
Downloads
164
Categories
Developer Tools, Project Management, API, Other

- Retrieve list of projects from Qase.
- Get test cases for a project, optionally filtered by suite.
- Create individual test cases with title and description.
- Create test suites with title, description, preconditions, and parent.
- Create test runs with title, description, and selected test case IDs.
- Bulk create multiple test cases at once.

Install the package with npm install, then build with npm run build. Configure the MCP settings file (cline_mcp_settings.json) with the command pointing to the built index.js, the QASE_API_TOKEN environment variable, and optionally disable or auto-approve tools. Invoke the available tools through the MCP client.

Qaseのテスト管理プラットフォームと連携するためのModel Context Protocol (MCP) サーバーです。 テストケースの作成、取得、テスト実行の管理などの機能を提供します。

# パッケージのインストール npm install # ビルド npm run build

MCPの設定ファイル(cline_mcp_settings.json)に以下の設定を追加します:

{ "mcpServers": { "qase": { "command": "node", "args": ["path/to/qase-mcp-server/build/index.js"], "env": { "QASE_API_TOKEN": "your-api-token" }, "disabled": false, "autoApprove": [] } } }
{ "name": "get_projects" }

- project_code: プロジェクトコード(必須)
- suite_id: スイートID(オプション)- 指定したスイートに属するテストケースのみを取得

{ "name": "get_test_cases", "arguments": { "project_code": "DEMO", "suite_id": 123 } }

- project_code: プロジェクトコード(必須)
- title: テストケースのタイトル(必須)
- description: テストケースの説明(オプション)

{ "name": "create_test_case", "arguments": { "project_code": "DEMO", "title": "ログイン機能のテスト", "description": "ユーザーログイン機能の動作確認" } }

- project_code: プロジェクトコード(必須)
- title: テストスイートのタイトル(必須)
- description: テストスイートの説明(オプション)
- preconditions: テストスイートの前提条件(オプション)
- parent_id: 親スイートのID(オプション)

{ "name": "create_suite", "arguments": { "project_code": "DEMO", "title": "認証機能テストスイート", "description": "認証に関連する全てのテストケース", "preconditions": "テスト用のデータベースが初期化されていること" } }

- project_code: プロジェクトコード(必須)
- title: テスト実行のタイトル(必須)
- description: テスト実行の説明(オプション)
- cases: テスト実行に含めるテストケースのID一覧(オプション)

{ "name": "create_test_run", "arguments": { "project_code": "DEMO", "title": "リグレッションテスト実行", "description": "v1.2.0リリース前の確認テスト", "cases": [1, 2, 3] } }

- project_code: プロジェクトコード(必須)
- cases: 作成するテストケースの配列(必須)

- title: テストケースのタイトル(必須)
- description: テストケースの説明(オプション)
- suite_id: 所属するスイートのID(オプション)

{ "name": "create_test_cases_in_bulk", "arguments": { "project_code": "DEMO", "cases": [ { "title": "ログイン成功パターン", "description": "正しい認証情報での確認", "suite_id": 123 }, { "title": "ログイン失敗パターン", "description": "不正な認証情報での確認", "suite_id": 123 } ] } }

- 認証エラー: APIトークンが無効または未設定
- パラメータエラー: 必須パラメータの不足や不正な値
- APIエラー: Qase APIからのエラーレスポンス

# 開発モードで実行(ファイル変更の監視) npm run dev # テストの実行 npm test

This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.

Integration with QA Sphere test management system, enabling LLMs to discover, summarize, and interact with test cases directly from AI-powered IDEs

An MCP server for interacting with the Qase test management platform.

Interact with TestRail's core entities such as test cases, runs, and results using a standardized protocol.

An MCP server for interacting with the Postman API, requiring an API key.

Adds possibility to work with testing management via MCP

An enhanced Apifox MCP service providing comprehensive API management capabilities for Claude Desktop and Cursor.

This MCP Server accepts swagger/postman documents as input. It then generates API & Load test scenarios, executes the tests and generates the execution report.

A Model Context Protocol (MCP) server for creating, managing, and executing Bruno API testing collections. Supports both .bru and .yml (opencollection) formats with built-in security hardening.

Execute Bruno collections using the Bruno CLI, with support for environment files and detailed test results.

An MCP server for Factifai, enabling integration with any MCP-compatible AI tool to create and retrieve test results asynchronously.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.