changedInput schema / properties / tests / items / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "description": {
- "description": "Short explanation of what this endpoint check is meant to prove.",
- "minLength": 3,
- "type": "string"
- },
- "type": {
- "const": "endpoint_exists",
- "description": "Perform one unauthenticated GET request and pass when the endpoint returns a 2xx HTTP status.",
- "type": "string"
- },
- "url": {
- "description": "Public URL to probe, for example https://api.github.com.",
- "format": "uri",
- "type": "string"
- }
- },
- "required": [
- "description",
- "type",
- "url"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "description": {
- "description": "Short explanation of what this npm lower-bound count check is meant to prove.",
- "minLength": 3,
- "type": "string"
- },
- "query": {
- "description": "npm search phrase to count, for example 'mcp email server'.",
- "minLength": 2,
- "type": "string"
- },
- "threshold": {
- "description": "Lower bound that the npm search result count must exceed.",
- "minimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "npm_count_above",
- "description": "Search npm and pass when the reported result count is strictly greater than the threshold.",
- "type": "string"
- }
- },
- "required": [
- "description",
- "type",
- "query",
- "threshold"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "description": {
- "description": "Short explanation of what this npm upper-bound count check is meant to prove.",
- "minLength": 3,
- "type": "string"
- },
- "query": {
- "description": "npm search phrase to count, for example 'business verification mcp'.",
- "minLength": 2,
- "type": "string"
- },
- "threshold": {
- "description": "Upper bound that the npm search result count must stay below.",
- "minimum": 0,
- "type": "integer"
- },
- "type": {
- "const": "npm_count_below",
- "description": "Search npm and pass when the reported result count is strictly less than the threshold.",
- "type": "string"
- }
- },
- "required": [
- "description",
- "type",
- "query",
- "threshold"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "description": {
- "description": "Short explanation of what this response-content check is meant to prove.",
- "minLength": 3,
- "type": "string"
- },
- "substring": {
- "description": "Exact case-sensitive text to search for in the fetched response body.",
- "minLength": 1,
- "type": "string"
- },
- "type": {
- "const": "response_contains",
- "description": "Fetch a public URL and pass when the response body contains the exact substring using case-sensitive matching. The tool does not parse DOM structure or execute JavaScript before matching.",
- "type": "string"
- },
- "url": {
- "description": "Public URL whose response body should contain the expected text.",
- "format": "uri",
- "type": "string"
- }
- },
- "required": [
- "description",
- "type",
- "url",
- "substring"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "Short explanation of what this endpoint check is meant to prove.",
+ "minLength": 3,
+ "type": "string"
+ },
+ "type": {
+ "const": "endpoint_exists",
+ "description": "Perform one unauthenticated GET request and pass when the endpoint returns a 2xx HTTP status.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Public URL to probe, for example https://example.com.",
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "description",
+ "type",
+ "url"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "Short explanation of what this npm lower-bound count check is meant to prove.",
+ "minLength": 3,
+ "type": "string"
+ },
+ "query": {
+ "description": "npm search phrase to count, for example 'mcp email server'.",
+ "minLength": 2,
+ "type": "string"
+ },
+ "threshold": {
+ "description": "Lower bound that the npm search result count must exceed.",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "type": {
+ "const": "npm_count_above",
+ "description": "Search npm and pass when the reported result count is strictly greater than the threshold.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "description",
+ "type",
+ "query",
+ "threshold"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "Short explanation of what this npm upper-bound count check is meant to prove.",
+ "minLength": 3,
+ "type": "string"
+ },
+ "query": {
+ "description": "npm search phrase to count, for example 'business verification mcp'.",
+ "minLength": 2,
+ "type": "string"
+ },
+ "threshold": {
+ "description": "Upper bound that the npm search result count must stay below.",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "type": {
+ "const": "npm_count_below",
+ "description": "Search npm and pass when the reported result count is strictly less than the threshold.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "description",
+ "type",
+ "query",
+ "threshold"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "description": "Short explanation of what this response-content check is meant to prove.",
+ "minLength": 3,
+ "type": "string"
+ },
+ "substring": {
+ "description": "Exact case-sensitive text to search for in the fetched response body.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "type": {
+ "const": "response_contains",
+ "description": "Fetch a public URL and pass when the response body contains the exact substring using case-sensitive matching. The tool does not parse DOM structure or execute JavaScript before matching.",
+ "type": "string"
+ },
+ "url": {
+ "description": "Public URL whose response body should contain the expected text.",
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "description",
+ "type",
+ "url",
+ "substring"
+ ],
+ "type": "object"
+ }
+]