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 Connectors
65+ free in-browser developer tools (JSON, Base64, JWT, hash, regex…) callable over MCP.
238+ dev tools via MCP: JSON, QR, PDF, DNS, hash, UUID, code review, JWT, SSL, WHOIS, and more
49 developer tools via MCP: DNS, WHOIS, IP lookup, JWT, hashing, QR, and more.
Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).
Related MCP Servers
- FlicenseAqualityDmaintenanceSwiss-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 required185-
- AlicenseAqualityDmaintenanceZero-auth MCP server with everyday developer utilities: base64, UUID, hash, JWT decode, cron, timestamps, JSON, regex.17374MIT
- FlicenseAqualityDmaintenanceA 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.5-
- AlicenseNot gradedqualityBmaintenanceA 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.15MIT