verify_token
Check the validity of a JWT token using the MCP JSON Database Server's authentication tool, ensuring secure user access and session management.
Instructions
JWT token'ın geçerliliğini kontrol eder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
token | Yes | JWT token |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"description": "JWT token",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}