AI-Powered Testing Client for Domino Data Science Platform
This client enables you to use AI assistants (like Claude, GPT-4, etc.) to perform comprehensive testing, validation, and performance analysis of your Domino Data Science Platform through natural language conversations.
- LLM Client (this project) – clone the base workspace you will open in Cursor/Claude:
Open this folder in Cursor (preferred) or Claude Desktop so the assistant can read the files (e.g., use “Open Folder” in Cursor).
git clone https://github.com/dominodatalab/domino-qa-llm-client.git cd domino-qa-llm-client - MCP Server – clone the testing toolchain next to the client:
You will run this repo locally so the client can talk to Domino via MCP.
git clone https://github.com/dominodatalab/qa_mcp_server.git
- Python 3.11+
- Access to a Domino Data Science Platform instance with admin permissions
- Domino API key
- AI assistant that supports MCP (Cursor, Claude Desktop, VSCode with Claude extension, etc.)
From the qa_mcp_server directory you cloned in step 1:
cd /path/to/qa_mcp_server
uv venv
uv pip install -e .Create a .env file inside qa_mcp_server:
DOMINO_API_KEY='your_api_key_here'
DOMINO_HOST='https://your-domino-instance.com'Inside domino-qa-llm-client, update .cursor/mcp.json (replace /path/to/qa_mcp_server with the actual path):
{
"mcpServers": {
"domino_qa_server": {
"command": "uv",
"args": ["--directory", "/path/to/qa_mcp_server", "run", "domino_qa_mcp_server.py"]
}
}
}Add to your Claude Desktop config:
{
"mcpServers": {
"domino_qa_server": {
"command": "uv",
"args": ["--directory", "/path/to/qa_mcp_server", "run", "domino_qa_mcp_server.py"]
}
}
}Inside domino-qa-llm-client, create .vscode/mcp.json (replace /path/to/qa_mcp_server with the actual path):
{
"inputs": [],
"servers": {
"domino_qa_server": {
"type": "stdio",
"command": "uv",
"args": ["--directory", "/path/to/qa_mcp_server", "run", "domino_qa_mcp_server.py"]
}
}
}In Cursor, Claude Desktop, or VSCode (with the domino-qa-llm-client folder open), ask:
"Test user authentication for user 'integration-test' and project 'uat_test_project'"
If the assistant replies with Domino test results, everything is wired up correctly.
This client includes comprehensive UAT testing rules to guide your AI assistant:
.github/instructions/uat-rules.instructions- VScode rules file.cursor/rules/uat-rule.mdc- Cursor-specific rules file
The UAT rules file defines:
- End-to-End UAT Protocol: Complete 14-test sequence that runs automatically
- Test Execution Rules: Continuous execution without pausing between tests
- Mandatory Test Sequence: All 14 tests from environment builds to admin portal validation
- Cleanup Procedures: Automatic resource cleanup after test completion
- Safety Guidelines: Protection against running tests in production environments
Your AI assistant will automatically follow these rules when you request UAT testing.
- Environment builds
- File operations (upload, download, move, rename, version control)
- Project operations (copy, fork)
- Jobs (Python/R, hardware tiers, scheduling)
- Workspaces (Jupyter, RStudio, VSCode, all hardware tiers)
- Datasets (creation, snapshots)
- Publishing (Model APIs, Apps)
- Execution management
- Infrastructure management
- Configuration management
- Monitoring & notifications
- Security & auditing
"Run comprehensive UAT on Domino using username 'integration-test' and project 'uat_test_project'."
"Test all workspace IDEs for user 'integration-test' and project 'workspace_test'."
"Test workspace hardware tiers (small-k8s, medium-k8s, large-k8s) for user 'integration-test'."
"Run admin portal UAT testing for user 'integration-test' and project 'admin_test'."
"Clean up all test workspaces and datasets for user 'integration-test' and project 'uat_test_project'."
- User Access: Must have admin permissions for full testing
- Test Projects: Always use test project names (e.g., "uat_test_project", "qa-test-project")
- Never test in production projects
- Cleanup: Always clean up test resources after testing
llm-questions.md- Example questions to ask your AI assistant.github/instructions/uat-rules.instructions- UAT testing workflow rules for AI assistants.cursor/rules/uat-rule.mdc- Cursor-specific rules file (legacy)domino_project_settings.md- Project configuration parameters
- 23/23 Requirements: 100% coverage
- All 3 IDEs: Jupyter, RStudio, VSCode
- All Hardware Tiers: small-k8s, medium-k8s, large-k8s
- All Admin Features: Complete admin portal validation
Compatible with Domino 5.x/6.x. Requires Python 3.11+ with FastMCP, requests, and dominodatalab library.