userinyerface-mcp-server
OfficialClick on "Deploy 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., "@userinyerface-mcp-serverlist the available test cases"
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.
userinyerface-mcp-server
A small MCP (Model Context Protocol) server that exposes the official test
cases for the userinyerface.com capstone project (Unit 4 — Allure &
Reporting) as MCP tools.
The test cases for this project are not included in the practice repositories. Just like on a real project, they live in a separate test case management system — here, that system is this MCP server. Connect your AI client to it and retrieve the test cases you need as part of Phase 0 of the capstone task.
What it exposes
Two tools, backed by a single test_cases.json file:
list_test_cases()— returns the id and title of every available test case (TC1Cards,TC2Help Form,TC3Cookies Form,TC4Timer).get_test_case(test_id)— returns the full test case for a given id: host, preconditions, and the step-by-step table (action / expected result).
Related MCP server: mcp-playwright-test
Setup
Requires Python 3.10+.
pip install -r requirements.txtYou can sanity-check the server runs locally with:
python server.py(It will sit waiting on stdio — that's expected. Press Ctrl+C to stop. You don't need to run it manually; your MCP client launches it for you.)
Connecting via Cursor (free tier)
Open Cursor → Settings → MCP.
Add a new MCP server with a config like this (adjust the path to wherever you cloned this repo):
{
"mcpServers": {
"userinyerface-test-cases": {
"command": "python",
"args": ["/absolute/path/to/userinyerface-mcp-server/server.py"]
}
}
}Cursor should show the server as connected, with
list_test_casesandget_test_caseavailable as tools.Ask your AI assistant something like "list the available test cases" or "get me the test case for TC4" to confirm it's working.
See the Unit 4 setup video for a full walkthrough.
Project structure
userinyerface-mcp-server/
├── server.py # MCP server entry point — tool definitions
├── test_cases.json # The actual test case data
├── requirements.txt
└── README.mdThis server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides access to Testiny projects, test cases and test runs
MCP server for AI access to Swagger by SmartBear.
An MCP server that provides tools to discover and retrieve podcast episodes transcripts.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Related MCP Servers
- AlicenseAqualityFmaintenanceA universal MCP server that exposes all UTCP-registered tools to MCP clients while providing a web interface for tool management.712203MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that automates Playwright-based UI and API testing, supporting test case generation from requirements or API specs, and execution with detailed reports.61MIT
- AlicenseBqualityBmaintenanceAn MCP server for TestRail that prepares everything needed to generate test cases from Jira tickets, Confluence pages, or free-form specs and pushes them back to TestRail.312MIT
- AlicenseBqualityCmaintenanceMCP server for generating, validating, running, and reporting Apache JMeter API performance tests from structured API sources.1357MIT