x402-is-url
Is URL: Check whether a string is a valid URL. Provide value or input; returns true if it parses as a URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | Input to process | |
| value | No | Value to process |
Is URL: Check whether a string is a valid URL. Provide value or input; returns true if it parses as a URL.
| Name | Required | Description | Default |
|---|---|---|---|
| input | No | Input to process | |
| value | No | Value to process |
Changes observed during successful MCP inspections.
Input schema / properties / inputAdded value: +{
+ "description": "Input to process",
+ "type": "string"
+}Input schema / properties / valueAdded value: +{
+ "description": "Value to process",
+ "type": "string"
+}Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It discloses that the result is boolean true when parsing succeeds, implying false otherwise, but does not state error behavior, parsing standard, auth needs, or rate limits. Adequate but incomplete.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core operation. 'Is URL:' slightly restates the name, but otherwise there is no wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple no-output-schema validator, the description says what is checked and what true means, but it omits false/error behavior, parameter distinction, and sibling differentiation in a very crowded tool namespace. It leaves avoidable ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description says 'Provide value or input', which confirms either parameter may carry the string, but it does not explain the semantic difference between 'input' and 'value'; both schema descriptions are also generic.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a clear verb and resource: checking whether a string is a valid URL and returning true if it parses. It does not differentiate from siblings such as x402-validate-url or x402-is-domain, but the core operation is understandable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives. It mentions supplying 'value or input', but that is parameter usage rather than context or exclusions, so an agent gets no routing signal among many URL-related siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.