jwt_decode
Decode a JWT to extract its header, payload, and signature without verification, enabling detailed analysis of token contents. Part of the JWT Auditor MCP Server for advanced token auditing.
Instructions
Decode a JWT and return its header, payload, and signature (no verification).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token | Yes |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"title": "Token",
"type": "string"
}
},
"required": [
"token"
],
"title": "jwt_decodeArguments",
"type": "object"
}