decode_jwt
Pack: jwt · Endpoint: https://gateway.pipeworx.io/jwt/mcp
Decode a JSON Web Token (keyless, offline): returns the header and payload JSON plus a summary of the standard claims (iss, sub, aud, exp/iat/nbf as ISO dates, and whether it is expired). NOTE: this decodes but does NOT verify the signature — a decoded token is not a verified/trusted token.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
token | string | yes | A JWT (header.payload.signature). |
Example call
curl -X POST https://gateway.pipeworx.io/jwt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"decode_jwt","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"jwt": {
"url": "https://gateway.pipeworx.io/jwt/mcp"
}
}
}
See Getting Started for client-specific install steps.