get_shared_step
Retrieve a specific shared step from the QASE MCP Server by providing the required code and hash, enabling efficient access to shared test case components.
Instructions
Get a specific shared step
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
hash | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "string"
},
"hash": {
"type": "string"
}
},
"required": [
"code",
"hash"
],
"type": "object"
}