Overview
MCP-Qase is a server designed to integrate with Qase, a test management tool, to streamline the testing process.
To use mcp-qase, set up the server and connect it to your Qase account to manage and automate your testing workflows.
- Integration with Qase for test management - Automation of testing processes - User-friendly interface for managing tests
- Automating test case execution in software development.
- Managing test cases and results for QA teams.
- Streamlining the testing workflow for continuous integration.
Add to your AI client
Use these steps to connect QASE MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-qase-rikuson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-qase-rikuson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-qase-rikuson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-qase-rikuson": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-qase-rikuson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-qase-rikuson": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-qase-rikuson"
]
}
}
}FAQ
What is the purpose of mcp-qase?
mcp-qase is designed to enhance the testing process by integrating with Qase, allowing for better management and automation of tests.
Is mcp-qase free to use?
The project is open-source and available under the MIT license, making it free to use and modify.
How can I contribute to mcp-qase?
Contributions are welcome! You can contribute by submitting issues or pull requests on the GitHub repository.