QuickHelp
quickhelp.dev — 15 free developer tools, each with a UI, API, and MCP server
Every tool runs in your browser, exposes a REST API, and is wired into a single MCP server so AI agents and humans get first-class access without any sign-up.
Live: quickhelp.dev · API: quickhelp.dev/openapi.json · MCP: quickhelp.dev/mcp
Tools
Tool | UI | API endpoint |
JWT Decoder |
| |
JSON Formatter |
| |
Base64 Encoder / Decoder |
| |
Image Converter |
| |
Image Resizer |
| |
Background Remover |
| |
Hash Generator |
| |
UUID Generator |
| |
URL Encoder / Decoder |
| |
Timestamp Converter |
| |
JSON to CSV |
| |
Text Case Converter |
| |
Color Converter |
| |
Number Base Converter |
| |
LCOV Viewer |
|
Related MCP server: mcp-server-devutils
Three interfaces, one domain
Human UI — browser-based, no sign-up, no upload to a server. Image tools use WebAssembly in your browser; text tools run client-side JS.
REST API — every tool is POST /api/<slug>, JSON in, JSON out. Free tier: 30 req/60s watermarked. OpenAPI 3.1 spec at /openapi.json.
MCP server — a single MCP endpoint covers all 15 tools. AI agents (Claude, Cursor, Continue, etc.) can discover and call any tool via the Model Context Protocol.
GET https://quickhelp.dev/openapi.json # OpenAPI 3.1 — all tools
GET https://quickhelp.dev/llms.txt # llms.txt discovery surface
GET https://quickhelp.dev/llms-full.txt # full per-tool docs for LLMs
POST https://quickhelp.dev/mcp # MCP HTTP (JSON-RPC 2.0)Use the MCP server
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"quickhelp": {
"command": "npx",
"args": ["-y", "quickhelp-mcp"]
}
}
}Claude Code (CLI)
claude mcp add --transport http quickhelp https://quickhelp.dev/mcpHosted HTTP endpoint (any MCP client)
POST https://quickhelp.dev/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}Quick API example
# Decode a JWT
curl -X POST https://quickhelp.dev/api/jwt-decoder \
-H 'Content-Type: application/json' \
-d '{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.dozjgNryP4J3jVmNHl0w5N_XgL0n3I9PlFUP0THsR8U"}'
# Convert a colour
curl -X POST https://quickhelp.dev/api/color-converter \
-H 'Content-Type: application/json' \
-d '{"color":"#FF5733","from":"hex","to":"hsl"}'
# Generate UUIDs
curl -X POST https://quickhelp.dev/api/uuid-generator \
-H 'Content-Type: application/json' \
-d '{"version":"v4","count":5}'Repo structure
quickhelp/
├── apps/web/ # Next.js 14 — human UI + REST API + discovery routes
├── apps/mcp/ # Standalone MCP stdio server (same registry)
├── packages/tool-kit/ # defineTool() contract + Zod helpers
├── packages/agent-sdk/# buildOpenAPI(), buildLlmsTxt(), buildMcpTools()
├── packages/ui/ # Shared UI components
├── packages/seo/ # MetaTags + JSON-LD
├── packages/tools/ # One package per tool
└── tooling/ # CLI scaffolder (pnpm create-tool <slug>)Local development
pnpm install
pnpm dev # web app at localhost:3000Adding a new tool
pnpm create-tool <slug>
# Fill in packages/tools/<slug>/src/manifest.ts
# Tool auto-appears in UI, API, OpenAPI, llms.txt, and MCP — no extra wiringDesign principles
No auth, no database, no LLM calls — every tool is stateless and finishes in <5s.
Privacy-first — image processing runs in your browser via WebAssembly; nothing is uploaded.
Single-domain aggregation — one
/openapi.json, one/mcp, one/llms.txtso agents resolve tool discovery in one request.Free tier, always — anonymous use is free (watermarked output, 30 req/60s).
⭐ If this is useful, a GitHub star helps other developers find it.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceSwiss-army-knife utility MCP server for AI agents. 18 tools for JSON validation/formatting, base64 encode/decode, hash generation, UUID generation, URL parsing, regex testing, markdown↔HTML conversion, text stats, slug generation, datetime conversion, cron parsing, text diffing, CSV↔JSON conversion, and JWT decoding. Zero API Key requiredLast updated5
- AlicenseAqualityFmaintenanceZero-auth MCP server with everyday developer utilities: base64, UUID, hash, JWT decode, cron, timestamps, JSON, regex.Last updated171003MIT
- Flicense-qualityCmaintenanceA lightweight MCP server providing everyday developer utilities such as JSON formatting, UUID generation, Base64 conversion, HTTP status lookup, and Unix timestamp conversion as tools and resources.Last updated
- Alicense-qualityBmaintenanceA unified developer toolbox MCP server providing utilities for base64, JWT, timestamps, UUID, JSON formatting, hashing, URL handling, case conversion, color conversion, number bases, string operations, and regex.Last updated319MIT
Related MCP Connectors
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
31 deterministic tools: JSON→Zod, regex, JWT, curl→fetch, hashing, encoding, UUIDs, encrypted links
16 AI-native tools with dual SSE + streamable-http transport. Free tier available.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jan-Stepien/quickhelp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server