← clean.tools
INDIVIDUAL MCP TOOL
decode_jwt
Use this when you need to decode (NOT verify) a JSON Web Token: base64url-decode the header and payload, surface standard claims, and report expiry — prefer it over reading a JWT by eye.
Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent endpoint
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.clean-tools]
url = "https://mcp.clean.tools/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"clean-tools": {
"type": "http",
"url": "https://mcp.clean.tools/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: clean-tools
Remote MCP URL: https://mcp.clean.tools/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"clean-tools": {
"url": "https://mcp.clean.tools/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"clean-tools": {
"type": "http",
"url": "https://mcp.clean.tools/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "clean-tools",
"transport": "streamable-http",
"url": "https://mcp.clean.tools/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
explain_cron— Use this when you need to understand or schedule a 5-field cron expression.validate_cron— Use this when you need to check whether a 5-field cron expression is well-formed, instead of guessing.expand_rrule— Use this when you need to build an iCalendar RRULE (RFC 5545) or list the actual dates a recurrence produces.convert_timezone— Use this when you need to convert a wall-clock date-time between IANA time zones with correct DST handling.strftime_preview— Use this when you need to know exactly what a C/POSIX strftime pattern (%Y %m %d %H %M %S %A %B %j %z etc.amortization_schedule— Use this when you need a fixed-rate loan or mortgage's level monthly payment plus a year-by-year amortization schedule (principal paid, interest paid, remaining balance) rather than doing the amortization arithmetic yourself.tvm_solve— Use this when you have four of the five time-value-of-money variables (N periods, I/Y annual rate percent, PV, PMT, FV) and need the fifth - annuity, loan, or investment problems - instead of solving the equation by hand.compound_interest— Use this when you need to project a principal's growth under compound interest, optionally with recurring monthly contributions, returning the final balance and a year-by-year breakdown rather than estimating compound growth yourself.