Skip to main content
Glama
Jambozx

OnlineCyberTools MCP (280+ filterable tools)

crypto_scrypt_verify

Read-onlyIdempotent

Verify a plaintext password against an existing scrypt hash by recomputing the derivation from the hash's N, r, p, and salt parameters. Returns match status, parsed parameters, and strength analysis.

Instructions

Scrypt Hash Verifier. Check whether a plaintext password matches an existing scrypt hash, recomputing the derivation from the N, r, p, and salt encoded in the hash string. Use this to verify a candidate password; use crypto_scrypt instead to generate a new hash. Runs locally on the input you provide: read-only, non-destructive, contacts no external service, and is rate-limited. Returns whether the password matched, the parameters parsed from the hash, and a strength analysis of those parameters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
passwordYesThe plaintext password to test against the hash.
hashYesThe encoded scrypt hash to verify against, in the format produced by crypto_scrypt: $scrypt$N=<N>,r=<r>,p=<p>$<saltHex>$<base64DerivedKey>. The N, r, p, and salt are read from this string to recompute the derivation and compare it against the supplied password.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
verifiedNoTrue when the password matches the supplied hash.
infoNoParameters parsed from the hash; null when the hash format is invalid.
securityNoStrength analysis of the parsed parameters; null on error.
errorNoError message when verification fails (e.g. invalid hash format); null on success.
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable context beyond annotations: 'Runs locally on the input you provide: read-only, non-destructive, contacts no external service, and is rate-limited.' This aligns with the annotations (readOnlyHint, destructiveHint, idempotentHint) and provides additional details about execution locality and rate limiting.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: it starts with the purpose, then usage guidance, then behavioral traits, and finally the return value summary. Every sentence adds value with no superfluous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool (2 parameters) and the existence of an output schema, the description is complete. It mentions the return information (match result, parsed parameters, strength analysis), covering all necessary aspects for an agent to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions and examples for both parameters. The description further explains the hash format and how N, r, p, salt are extracted from it, adding meaningful context beyond the schema's individual parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Check whether a plaintext password matches an existing scrypt hash.' It specifies the verb (verify) and resource (password against hash). It also distinguishes from sibling 'crypto_scrypt' by noting the alternative use case for generating new hashes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: 'Use this to verify a candidate password; use crypto_scrypt instead to generate a new hash.' This clearly tells the agent when to use this tool versus the sibling tool for hash generation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jambozx/onlinecybertools-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server