{"name":"app.cleanor/cleanor","slug":"cleanor","title":"Cleanor","description":"Zero-auth MCP: image optimize, cited storage/format data, and dev utilities LLMs get wrong.","url":"https://mcp.market/server/cleanor","rating":null,"grade":"B","score":82,"certified":false,"status":"active","category":"media","tags":["media","security"],"presence":{"score":30,"stars":1,"forks":0,"downloads_week":53,"last_push_at":"2026-07-14T19:58:35.000Z","license":"MIT"},"uptime":{"percent":100,"checks":28,"ok":28,"last_checked_at":"2026-09-27T13:55:36.769Z","last_ok_at":"2026-09-27T13:55:36.769Z","latency_ms":1257},"claimed":false,"transport":"mixed","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/cleanor-app/cleanor-mcp","website":"https://mcp.cleanor.app","version":"0.6.1","remotes":[{"type":"streamable-http","url":"https://mcp.cleanor.app/mcp"}],"packages":[{"registryType":"npm","identifier":"@cleanor/mcp","version":"0.6.1","transport":{"type":"stdio"}}],"tools":[{"name":"base64","description":"Encode text to Base64 or decode Base64 back to text (UTF-8 safe). Supports URL-safe alphabet. Use whenever you need to encode/decode data URIs, tokens, or config values instead of guessing the bytes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","minLength":1,"maxLength":100000,"description":"Text to encode, or Base64 to decode."},"mode":{"type":"string","enum":["encode","decode"],"default":"encode","description":"Direction."},"url_safe":{"type":"boolean","default":false,"description":"Use URL-safe alphabet (-_ instead of +/, no padding)."}},"required":["input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"base_convert","description":"Convert an integer between number bases 2–36 (e.g. hex to binary, decimal to base-36). Arbitrary precision via BigInt, so large values stay exact. Use for radix conversions instead of doing them by hand.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"value":{"type":"string","minLength":1,"maxLength":2000,"description":"The number, in from_base (e.g. \"ff\", \"1010\", \"255\")."},"from_base":{"type":"integer","minimum":2,"maximum":36,"default":10,"description":"Base of the input (2–36)."},"to_base":{"type":"integer","minimum":2,"maximum":36,"default":16,"description":"Base to convert to (2–36)."}},"required":["value"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"color","description":"Convert a color (hex, rgb() or hsl()) and return hex, RGB and HSL representations at once. Use when picking or translating colors for CSS, design tokens or themes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"value":{"type":"string","minLength":1,"maxLength":64,"description":"A color: \"#3b82f6\", \"rgb(59,130,246)\" or \"hsl(217,91%,60%)\"."}},"required":["value"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"color_palette","description":"Build a harmonious color palette from a base color using color-theory rules (complementary, analogous, triadic, tetradic, or monochromatic). Returns each color as hex and HSL. Use to derive a theme or design tokens from one brand color.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"color":{"type":"string","minLength":1,"maxLength":64,"description":"Base color: \"#3b82f6\", \"rgb(...)\" or \"hsl(...)\"."},"harmony":{"type":"string","enum":["complementary","analogous","triadic","tetradic","monochromatic"],"default":"analogous","description":"Color-harmony rule."}},"required":["color"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"count","description":"Accurately count characters (Unicode code points), UTF-16 units, words, lines and UTF-8 bytes in text. LLMs are notoriously bad at counting, so always use this tool for \"how many characters/words\" questions.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","minLength":0,"maxLength":100000,"description":"Text to measure."}},"required":["input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"cron_describe","description":"Parse a standard 5-field cron expression (minute hour day-of-month month day-of-week) into a plain-English breakdown and the next few run times in UTC. Use to sanity-check a schedule instead of guessing what the fields mean.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"expression":{"type":"string","minLength":1,"maxLength":200,"description":"A 5-field cron expression, e.g. \"30 2 * * 1-5\"."}},"required":["expression"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"datetime","description":"Get the current date/time, or convert a given timestamp, into a target IANA timezone with ISO, Unix and human-readable forms. Pass a Unix timestamp (seconds or ms) or an ISO string as input; omit it for \"now\". LLMs cannot know the real current time, so use this instead of guessing.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","maxLength":64,"description":"Optional: a Unix timestamp (s or ms) or ISO date string. Omit for the current time."},"timezone":{"type":"string","maxLength":64,"default":"UTC","description":"IANA timezone, e.g. \"America/New_York\" or \"UTC\"."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"diff","description":"Compute a line-by-line diff between two texts, marking removed lines with \"-\", added with \"+\" and unchanged with two spaces, plus a change count. Use to see exactly what changed instead of comparing by eye. Capped at 1000 lines per side.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"a":{"type":"string","minLength":0,"maxLength":100000,"description":"The original (\"before\") text."},"b":{"type":"string","minLength":0,"maxLength":100000,"description":"The updated (\"after\") text."}},"required":["a","b"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"hash","description":"Compute a cryptographic hash of text (SHA-1, SHA-256, SHA-384 or SHA-512) and return the hex digest. Use for checksums, cache keys, or verifying content. MD5 is intentionally not offered (broken, and unavailable in Web Crypto). LLMs cannot compute these reliably by hand, so always use this tool instead of guessing.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","minLength":1,"maxLength":100000,"description":"Text to hash (UTF-8)."},"algorithm":{"type":"string","enum":["sha-256","sha-1","sha-384","sha-512"],"default":"sha-256","description":"Hash algorithm. Default sha-256."}},"required":["input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"hmac","description":"Compute an HMAC (keyed hash) of a message with a secret, using SHA-1/256/384/512, returned as hex or Base64. Use to sign webhook payloads or verify a signature instead of guessing. LLMs cannot compute this by hand.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"message":{"type":"string","minLength":0,"maxLength":100000,"description":"The message to sign (UTF-8)."},"secret":{"type":"string","minLength":1,"maxLength":4096,"description":"The shared secret key (UTF-8)."},"algorithm":{"type":"string","enum":["sha-256","sha-1","sha-384","sha-512"],"default":"sha-256","description":"Hash algorithm."},"encoding":{"type":"string","enum":["hex","base64"],"default":"hex","description":"Output encoding."}},"required":["message","secret"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"image_format_savings","description":"How much smaller WebP, AVIF or JPEG XL are than JPEG at matched perceptual quality, from Cleanor Labs’ controlled benchmark. Also reports the \"HEIC conversion tax\" (converting an iPhone HEIC to JPG/PNG makes it bigger). Use to justify a format choice when building a site or app.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"format":{"type":"string","enum":["webp","avif","jxl"],"default":"avif","description":"Target format to compare against JPEG."},"quality":{"type":"string","enum":["web","high"],"default":"web","description":"web = typical web quality (SSIM 0.95); high = near-lossless (SSIM 0.98)."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"json_format","description":"Validate JSON and pretty-print or minify it, optionally sorting object keys. Returns a precise parse error (with position) if invalid. Use to check and clean JSON instead of eyeballing it.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","minLength":1,"maxLength":100000,"description":"JSON text."},"mode":{"type":"string","enum":["pretty","minify"],"default":"pretty","description":"pretty = 2-space indent; minify = single line."},"sort_keys":{"type":"boolean","default":false,"description":"Sort object keys alphabetically (deep)."}},"required":["input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"jwt_decode","description":"Decode a JSON Web Token into its header and payload so you can inspect claims (iss, exp, sub, scopes). The signature is NOT verified and no secret is required or stored. Use to read a token during debugging.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"token":{"type":"string","minLength":1,"maxLength":100000,"description":"The JWT (three dot-separated segments)."}},"required":["token"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"optimize_image","description":"Fetch an image from a public URL and re-encode it smaller (WebP/AVIF/JPEG), optionally resizing to a target width. Returns the optimized image plus before/after byte sizes. Use this when an AI-generated or dropped-in asset (hero image, screenshot, illustration) is too large to ship.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"image_url":{"type":"string","format":"uri","description":"Public URL of the source image (PNG/JPEG/WebP/AVIF/GIF)."},"format":{"type":"string","enum":["webp","avif","jpeg"],"default":"webp","description":"Output format. webp = best browser support; avif = smallest; jpeg = universal."},"width":{"type":"integer","minimum":16,"maximum":4096,"description":"Resize to this width in px, preserving aspect ratio. Omit to keep original size."},"quality":{"type":"integer","minimum":1,"maximum":100,"default":80,"description":"Encode quality 1-100 (80 is a good default)."}},"required":["image_url"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"placeholder_image","description":"Generate a lightweight SVG placeholder image at any size, with an optional label and custom background/text colors. Dependency-free, pastes straight into a page or mockup. Use for wireframes and design stubs instead of hotlinking a placeholder service.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"width":{"type":"integer","minimum":1,"maximum":4000,"default":600,"description":"Width in pixels."},"height":{"type":"integer","minimum":1,"maximum":4000,"default":400,"description":"Height in pixels."},"bg":{"type":"string","maxLength":32,"default":"#e5e7eb","description":"Background color (hex, rgb() or hsl())."},"color":{"type":"string","maxLength":32,"default":"#6b7280","description":"Text color."},"text":{"type":"string","maxLength":120,"description":"Label text. Defaults to the dimensions, e.g. \"600×400\"."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"qr_code","description":"Encode text or a URL as a QR code and return a crisp, dependency-free SVG you can paste straight into a page, deck or doc.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"text":{"type":"string","minLength":1,"maxLength":2000,"description":"Text or URL to encode."},"ecc":{"type":"string","enum":["L","M","Q","H"],"default":"M","description":"Error-correction level: L=7%, M=15%, Q=25%, H=30% recoverable."},"size":{"type":"integer","minimum":64,"maximum":1024,"default":320,"description":"SVG pixel size."}},"required":["text"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"regex_test","description":"Test a JavaScript regular expression against sample text and return whether it matches, plus every match with its captured groups and index. Use to verify a pattern instead of reasoning about it in your head. Input and pattern are length-capped to keep it fast and safe.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"pattern":{"type":"string","minLength":1,"maxLength":1000,"description":"The regex pattern (without slashes)."},"input":{"type":"string","minLength":0,"maxLength":20000,"description":"Text to test against."},"flags":{"type":"string","maxLength":8,"default":"g","description":"Regex flags, e.g. \"gi\". Allowed: g i m s u y d."}},"required":["pattern","input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"slugify","description":"Turn a title or phrase into a clean, URL-safe slug (lowercase, hyphenated, accents stripped). Use when generating page paths, filenames or anchor IDs.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"input":{"type":"string","minLength":1,"maxLength":2000,"description":"Text to slugify."},"separator":{"type":"string","enum":["-","_"],"default":"-","description":"Word separator."}},"required":["input"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"storage_capacity","description":"How many photos or minutes of video actually fit in a given storage size, corrected for real OS/filesystem overhead. Backed by Cleanor Labs measured per-item sizes. Use for realistic sample copy, dashboards, or \"how many photos fit in 128 GB\" answers.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"storage_gb":{"type":"number","minimum":1,"maximum":4096,"description":"Advertised storage size in GB (e.g. 64, 128, 256, 512)."},"content":{"type":"string","enum":["photos","video"],"default":"photos","description":"What to count."}},"required":["storage_gb"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"unit_convert","description":"Convert a value between units of length, mass, data size, time, speed or temperature. Supported units: mm, cm, m, km, in, ft, yd, mi, nmi, mg, g, kg, t, oz, lb, st, bit, byte, kb, kib, mb, mib, gb, gib, tb, tib, ms, s, min, h, day, week, mps, kph, mph, fps, knot, c, f, k. Use for exact conversions instead of approximating.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"value":{"type":"number","description":"The numeric value to convert."},"from":{"type":"string","minLength":1,"maxLength":8,"description":"Source unit (e.g. \"km\", \"lb\", \"mib\", \"c\")."},"to":{"type":"string","minLength":1,"maxLength":8,"description":"Target unit (must be the same category as \"from\")."}},"required":["value","from","to"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"url_parse","description":"Break a URL into its components: scheme, host, port, path, decoded query parameters and fragment. Use to inspect or debug a URL instead of parsing it by eye.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","minLength":1,"maxLength":4000,"description":"The URL to parse (absolute, with scheme)."}},"required":["url"],"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"uuid","description":"Generate one or more UUIDs. v4 is fully random; v7 is time-sortable (recommended for database keys). LLMs cannot produce cryptographically random or correctly-formatted UUIDs, so always use this tool.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"version":{"type":"string","enum":["v4","v7"],"default":"v4","description":"UUID version. v7 = time-ordered."},"count":{"type":"integer","minimum":1,"maximum":100,"default":1,"description":"How many to generate."}},"additionalProperties":false,"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":82,"grade":"B","scanned_at":"2026-09-25T21:45:57.132Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-25T21:45:57.100Z","components":{"code":{"score":20,"max":25,"notes":["2 source files scanned"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1839ms"]},"poisoning":{"score":15,"max":15,"notes":["22 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":12,"max":15,"notes":["last push 73 days ago"]},"identity":{"score":5,"max":10,"notes":["namespace and repository owner differ","website matches verified namespace"]}},"findings":[{"id":"exec.eval","severity":"medium","component":"code","title":"eval / new Function used","evidence":"dist/stdio.js: …ode, sch); const makeValidate = new Function(`${names_1.default.self}`, `${names_1.de…"}],"inputs":{"probes":[{"url":"https://mcp.cleanor.app/mcp","reachable":true,"authRequired":false,"latencyMs":1839,"serverInfo":{"name":"cleanor","version":"0.6.0"}}],"packages":[{"registryType":"npm","identifier":"@cleanor/mcp","version":"0.6.1","found":true,"license":"MIT","hasInstallScripts":false,"dependencyCount":0,"publishedAt":"2026-07-14T19:55:59.197Z","repositoryUrl":"git+https://github.com/cleanor-app/cleanor-mcp.git","weeklyDownloads":53}],"repo":{"found":true,"owner":"cleanor-app","repo":"cleanor-mcp","archived":false,"pushedAt":"2026-07-14T19:58:35Z","stars":1,"forks":0,"openIssues":0,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/265092222?v=4","ownerCreatedAt":"2026-03-02T18:24:14Z","license":"MIT"},"icon":{"url":"https://cleanor.app/cleanor/pwa-192.png","source":"site","width":192,"height":192},"presence":{"stars":1,"forks":0,"downloadsWeek":53,"license":"MIT","lastPushAt":"2026-07-14T19:58:35.000Z","score":30}}}},"grade_history":[],"reviews":[]}