A Model Context Protocol server for the QA Sphere test management system. This integration enables Large Language Models (LLMs) to interact directly with QA Sphere test cases, allowing you to discover, summarize, and chat about test cases. In AI-powered IDEs that support MCP, you can reference specific QA Sphere test cases within your development workflow. - Node.js (recent LTS versions) - QA Sphe
Add this skill
npx mdskills install Hypersequent/qasphere-mcpClean MCP server with excellent setup documentation but lacks specific tool descriptions and examples
1# QA Sphere MCP Server23A [Model Context Protocol](https://github.com/modelcontextprotocol) server for the [QA Sphere](https://qasphere.com/) test management system.45This integration enables Large Language Models (LLMs) to interact directly with QA Sphere test cases, allowing you to discover, summarize, and chat about test cases. In AI-powered IDEs that support MCP, you can reference specific QA Sphere test cases within your development workflow.67## Prerequisites89- Node.js (recent LTS versions)10- QA Sphere account with API access11- API key from QA Sphere (Settings ⚙️ → API Keys → Add API Key)12- Your company's QA Sphere URL (e.g., `example.eu2.qasphere.com`)1314## Setup Instructions1516This server is compatible with any MCP client. Configuration instructions for popular clients are provided below.1718### Claude Desktop19201. Navigate to `Claude` → `Settings` → `Developer` → `Edit Config`212. Open `claude_desktop_config.json`223. Add the QA Sphere configuration to the `mcpServers` dictionary2324### Cursor2526#### Option 1: Manual Configuration27281. Go to `Settings...` → `Cursor settings` → `Add new global MCP server`292. Add the QA Sphere configuration3031#### Option 2: Quick Install3233Click the button below to automatically install and configure the QA Sphere MCP server:3435[](https://cursor.com/install-mcp?name=qasphere&config=eyJjb21tYW5kIjoibnB4IC15IHFhc3BoZXJlLW1jcCIsImVudiI6eyJRQVNQSEVSRV9URU5BTlRfVVJMIjoieW91ci1jb21wYW55LnJlZ2lvbi5xYXNwaGVyZS5jb20iLCJRQVNQSEVSRV9BUElfS0VZIjoieW91ci1hcGkta2V5In19)3637### 5ire38391. Open 'Tools' and press 'New'402. Complete the form with:41 - Tool key: `qasphere`42 - Command: `npx -y qasphere-mcp`43 - Environment variables (see below)4445### Configuration Template4647For any MCP client, use the following configuration format:4849```json50{51 "mcpServers": {52 "qasphere": {53 "command": "npx",54 "args": ["-y", "qasphere-mcp"],55 "env": {56 "QASPHERE_TENANT_URL": "your-company.region.qasphere.com",57 "QASPHERE_API_KEY": "your-api-key"58 }59 }60 }61}62```6364Replace the placeholder values with your actual QA Sphere URL and API key.6566## License6768This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.6970## Support7172If you encounter any issues or need assistance, please file an issue on the GitHub repository.73
Full transparency — inspect the skill content before installing.