TMCP039 search_tests filtered by category and tester_of

The user shall be able to combine category and tester_of filters, receiving only tests that match both criteria.

Is a test for
Automated in
Source

Source file: specs/mcp/test_11.yaml

Loaded from: speky_mcp

Initial state

The expected state is the final state of TMCP003 Initialize the MCP server

Procedure

Step 1

The client calls search_tests with category functional and tester_of RF01

{
  "id": 2,
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "search_tests",
    "arguments": {"category": "functional", "tester_of": "RF01"}
  }
}

Step 2

Verify only T01 is returned. T03 and T04 do not reference RF01. T02 references RF02, not RF01.

{
  "id": 2,
  "jsonrpc": "2.0",
  "result": {
    "structuredContent": {
      "tests": [
        {"category": "functional", "id": "T01"}
      ]
    }
  }
}