Qase MCP Server
Integrates with Qase test management platform, enabling management of test cases, projects, and test runs. Provides capabilities to retrieve project lists, get test cases, create new test cases, and manage test executions.
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., "@Qase MCP Servercreate a test case for login functionality in the DEMO project"
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.
Qase MCP Server
A Model Context Protocol (MCP) server for working with Qase's test management platform, providing functions such as creating and retrieving test cases and managing test execution.
set up
Prerequisites
Node.js v23.5.0
Qase API Token
TypeScript
install
# パッケージのインストール
npm install
# ビルド
npm run buildEnvironment settings
Add the following settings to the MCP configuration file ( 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": []
}
}
}Related MCP server: TestRail MCP Server
Available Tools
get_projects
Get a list of projects.
Input parameters : None
Example usage :
{
"name": "get_projects"
}get_test_cases
Gets a list of test cases for a specified project.
Input parameters :
project_code: Project code (required)suite_id: Suite ID (optional) - retrieves only test cases that belong to the specified suite.
Example usage :
{
"name": "get_test_cases",
"arguments": {
"project_code": "DEMO",
"suite_id": 123
}
}create_test_case
Create a test case.
Input parameters :
project_code: Project code (required)title: The title of the test case (required)description: A description of the test case (optional)
Example usage :
{
"name": "create_test_case",
"arguments": {
"project_code": "DEMO",
"title": "ログイン機能のテスト",
"description": "ユーザーログイン機能の動作確認"
}
}create_suite
Create a test suite.
Input parameters :
project_code: Project code (required)title: The title of the test suite (required)description: An optional description of the test suite.preconditions: Preconditions for the test suite (optional)parent_id: The ID of the parent suite (optional)
Example usage :
{
"name": "create_suite",
"arguments": {
"project_code": "DEMO",
"title": "認証機能テストスイート",
"description": "認証に関連する全てのテストケース",
"preconditions": "テスト用のデータベースが初期化されていること"
}
}create_test_run
Create a test run.
Input parameters :
project_code: Project code (required)title: The title of the test run (required)description: An optional description of the test run.cases: An optional list of test case IDs to include in the test run.
Example usage :
{
"name": "create_test_run",
"arguments": {
"project_code": "DEMO",
"title": "リグレッションテスト実行",
"description": "v1.2.0リリース前の確認テスト",
"cases": [1, 2, 3]
}
}create_test_cases_in_bulk
Create multiple test cases at once.
Input parameters :
project_code: Project code (required)cases: An array of test cases to create (required)title: The title of the test case (required)description: A description of the test case (optional)suite_id: The ID of the suite it belongs to (optional)
Example usage :
{
"name": "create_test_cases_in_bulk",
"arguments": {
"project_code": "DEMO",
"cases": [
{
"title": "ログイン成功パターン",
"description": "正しい認証情報での確認",
"suite_id": 123
},
{
"title": "ログイン失敗パターン",
"description": "不正な認証情報での確認",
"suite_id": 123
}
]
}
}Error Handling
Each tool can return the following errors:
Authentication Error: API token is invalid or not set
Parameter error: Required parameters are missing or have invalid values.
API Error: Error response from Qase API
The error message will include the specific problem and how to deal with it.
development
# 開発モードで実行(ファイル変更の監視)
npm run dev
# テストの実行
npm testlicense
ISC
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.
Related MCP Servers
- AlicenseCqualityFmaintenanceA TypeScript-based MCP server that provides integration with the Qase test management platform, allowing you to manage projects, test cases, runs, results, plans, suites, and shared steps.2612MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that allows interaction with TestRail's core entities (projects, cases, runs, results, datasets) through a standardized protocol compatible with MCP clients like Claude Desktop.2320MIT

Testomatio MCP Serverofficial
AlicenseNot gradedqualityAmaintenanceA Model Context Protocol server that enables AI assistants like Cursor to interact with Testomatio test management platform, allowing users to query test cases, runs, and plans through natural language.5527MIT- FlicenseNot gradedqualityNot gradedmaintenanceA Model Context Protocol server that provides integration with TestRail, allowing AI assistants to interact with TestRail projects, test cases, test runs, and results.1,3341
Related MCP Connectors
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/RayYokoyama/qase-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server