Skip to main content
Glama

x402-pbkdf2

Pbkdf2: Derive a PBKDF2-SHA256 key from a password and salt. Provide password, salt, and optional iterations/keylen.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
saltNoSalt to process
keylenNoKeylen to process
passwordNoPassword to process
iterationsNoIterations to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changed
    • addedInput schema / properties / iterations
      Added value: +{
      +  "description": "Iterations to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / keylen
      Added value: +{
      +  "description": "Keylen to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / password
      Added value: +{
      +  "description": "Password to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / salt
      Added value: +{
      +  "description": "Salt to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

C2.9/5.0
Behavior2/5

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, yet it discloses only the algorithm (SHA256). It does not state the output encoding (hex/base64/raw bytes), the determinism of the result, sensible defaults for iterations/keylen, or security caveats — all relevant for a crypto primitive.

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

Conciseness4/5

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

Two tight sentences that name the algorithm and enumerate the inputs, front-loading the purpose. No filler, though it is arguably too terse for a cryptographic tool.

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

Completeness3/5

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

With no output schema and no annotations, the description should compensate but omits the return format and defaults. It covers inputs adequately but leaves the output and safe-usage story underspecified.

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

Parameters3/5

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

Schema coverage is 100% but the schema descriptions are tautological ('Salt to process'), adding nothing; the description usefully clarifies that iterations and keylen are optional while password/salt are the core inputs. It does not, however, give formats or default values for the numeric-as-string parameters.

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

Purpose4/5

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

States a specific verb ('Derive') and resource ('PBKDF2-SHA256 key') plus the inputs used. An agent can distinguish it from generic hashing siblings, though it never explicitly names a near-neighbor like x402-scrypt or x402-hash to disambiguate the choice.

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

Usage Guidelines2/5

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

The description says what it does but gives no guidance on when to prefer PBKDF2 over the sibling key-derivation/hash tools, nor any prerequisite conditions. The agent must infer selection from the name alone.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources