We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apimatic/apimatic-validator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test-gen-settings.md•748 B
# Test Gen Settings
This structure helps specify additional test configurations which affects how test cases are generated.
## Structure
`TestGenSettings`
## Fields
| Name | Type | Tags | Description |
| --- | --- | --- | --- |
| `precisionDelta` | `number` | Required | Error margin for comparing values in decimal places |
| `testTimeout` | `number` | Required | Number of seconds after which if the endpoint is not returning any response, the test is forced to fail e.g. a timeout of 60 |
| `configuration` | `unknown` | Required | The parameters allows to provide values for configuration file for use in the test environment |
## Example (as JSON)
```json
{
"precisionDelta": 0.01,
"testTimeout": 30,
"configuration": {}
}
```