The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Devtools MCP listing page.
Five high-frequency developer utilities as MCP tools — UUID generation, timestamp conversion (Beijing time), unit conversion, JSON formatting/validation, and QR-code generation. Everything runs locally; four of the five tools use only the Python standard library.
Transport: Streamable HTTP (MCP 2025-03-26 compatible). No authentication required.
Add this to your MCP client's mcpServers configuration (Claude Desktop, Cursor, Cline, Cherry Studio, etc.):
Clients that do not accept
"type": "http"accept the same entry with just"url".
| Tool | Parameters | Returns | |
---|---|---|
| generate_uuid(version="v4", count=1, namespace=null, name=null) | version: v4 random (default) or v5 namespaced SHA-1. count: 1–1000. For v5: namespace (dns/url/oid/x500 or a full UUID) + name. | List of UUID strings (v5 is deterministic for the same namespace+name). |
| convert_timestamp(value=null, to="iso") | value: Unix timestamp in seconds or milliseconds (auto-detected, int or numeric string) or a date/time string (2026-09-05, 2026-09-05 10:30:00, ISO 8601…). Omit for "now". | ISO 8601 Beijing-time string + readable form + Unix seconds/milliseconds + weekday; or the reverse conversion from a date string. All times use Asia/Shanghai (UTC+8). |
| convert_unit(value, from_unit, to_unit) | Numeric value and units across length (m/km/cm/mm/mile/foot/inch…), weight (kg/g/mg/t/lb/oz…), temperature (c/f/k, with offset), data storage (B/KB/MB/GB/TB/PB, binary 1024). Chinese unit names also accepted. | Converted result plus a readable equation; cross-category conversion (e.g. meters to kilograms) returns a clear error. |
| format_json(data, action="format") | data: JSON string. action: format (pretty, 2-space indent, Chinese unescaped) / minify / validate. | Formatted/minified text with length comparison, or a validity verdict; on invalid JSON returns error line/column, a position pointer and a context snippet. |
| generate_qr(content, format="svg") | content: URL/text/WiFi string (≤ 2000 bytes). format: svg (default, vector) or png. | SVG markup string (save as .svg; an agent can write the file directly) or, for PNG, base64 + data URI (PNG requires Pillow). |
generate_uuid, convert_timestamp, convert_unit, format_json use only the Python standard library.generate_qr uses the pure-Python qrcode package with its SVG path image factory — SVG output needs no Pillow/native deps. PNG output is optional and requires Pillow.Then point your MCP client at http://127.0.0.1:8000/mcp.
With uv:
devtools_server.py — the MCP server: all five tools and FastMCP definitions.server.py — standalone Streamable HTTP entry point (serves the MCP app at /mcp).requirements.txt — Python dependencies.LICENSE — MIT.开发者工具包 MCP:五个高频小工具 —— UUID 生成(v4/v5)、时间戳双向转换(统一北京时间 UTC+8)、单位换算(长度/重量/温度/数据存储)、JSON 美化/压缩/校验(带错误定位)、二维码生成(默认矢量 SVG,可选 PNG)。
在线直连(免费、无需 Key):https://mcp.pianam.cn/devtools-mcp/mcp
前四个工具仅用 Python 标准库;二维码用纯 Python 的 qrcode 生成 SVG(PNG 才需 Pillow)。全程无任何网络请求与外部 API,确定性、隐私安全。
MIT © 2026 boy-373 (刘扶阳)