Skip to main content
Glama

IA-QA — 130+ QA & Dev Tools for AI Agents

decode_jwt

Read-only

Decode a JWT (JSON Web Token) and return its header and payload without verifying the signature. Also reports whether the token is expired and the exact expiry date. Use to inspect claims (sub, iss, exp, roles) during debugging or when integrating with an auth provider.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenYesThe JWT string to decode (header.payload.signature)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
headerNo
expiredNo
payloadNo
expiresAtNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedOutput schema / properties
      Added value: +{
      +  "expired": {},
      +  "expiresAt": {},
      +  "header": {},
      +  "note": {
      +    "type": "string"
      +  },
      +  "payload": {}
      +}
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "type": "object"
      +}
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is known. The description adds crucial behavior beyond annotations: it explicitly states the signature is NOT verified, which is a key security-relevant trait. It also mentions expiry reporting. This adds meaningful context without redundancy.

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 two sentences, front-loaded with the core function. Every sentence adds value: the first states what it does, the second gives usage guidance. No fluff or repetition.

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?

The tool is simple with one parameter and an output schema, so the description does not need to explain return values. It covers the purpose, key behavior (no signature verification), and typical use cases, making it fully sufficient for an agent to select and invoke the tool correctly.

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?

The schema covers 100% of the parameter, including a description of the JWT format. The description does not add extra parameter-specific details beyond what the schema provides, so the baseline score of 3 is appropriate.

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 uses a specific verb ('Decode') and resource ('JWT'), clearly stating it returns header and payload without verifying the signature. It distinguishes itself from siblings like base64_decode by focusing specifically on JWT structure and expiry reporting. The scope is unambiguous.

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

Usage Guidelines4/5

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

The description provides a clear use case: 'Use to inspect claims (sub, iss, exp, roles) during debugging or when integrating with an auth provider.' This gives context for when to use the tool, though it does not explicitly mention exclusions or alternatives, which prevents a top score.

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