jwt_generate
Generate JSON Web Tokens (JWTs) by specifying header, payload, algorithm, and keys (HS* or RS*). Integrate with JWT Auditor MCP Server for advanced token creation and auditing tasks.
Instructions
Generate a JWT with the given header, payload, algorithm, and key (HS* or RS*).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alg | Yes | ||
header | Yes | ||
key | Yes | ||
payload | Yes |
Input Schema (JSON Schema)
{
"properties": {
"alg": {
"title": "Alg",
"type": "string"
},
"header": {
"additionalProperties": true,
"title": "Header",
"type": "object"
},
"key": {
"title": "Key",
"type": "string"
},
"payload": {
"additionalProperties": true,
"title": "Payload",
"type": "object"
}
},
"required": [
"header",
"payload",
"alg",
"key"
],
"title": "jwt_generateArguments",
"type": "object"
}