Cryo MCP Server

Easily pickle/serialize/freeze/store and re-hydrate complex JavaScript objects (including Functions)

Local serverstdioPython

What is the Cryo MCP server?

Cryo MCP server exists for a simple reason — assistants are far more useful when they can act on Cryo directly instead of describing what you should do. Easily pickle/serialize/freeze/store and re-hydrate complex JavaScript objects (including Functions).

What you get

Built for node.js and browsers. Cryo is inspired by Python's pickle and works similarly to JSON.stringify() and JSON.parse(). Cryo.stringify() and Cryo.parse() improve on JSON in these circumstances:

Setting it up

Installation goes through your MCP client rather than a global install: point it at cryo on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What the assistant can call

Once Cryo is connected, these are the calls the assistant has available:

  • browser — Add the latest minified build to your project as a script:
  • Undefined — Cryo takes a verbatim snapshot of all your properties, including those that are undefined - which JSON ignores
  • Date — Cryo successfully works with Date objects, which JSON.stringify() mangles into strings
  • References — JSON.stringify() makes multiple copies of single objects, losing object relationships. When several references to the same object are stringified
  • Infinity — Cryo successfully stringifies and parses Infinity, which JSON mangles into null
  • Properties — Objects, Arrays, Dates, and Functions can all hold properties, but JSON will only stringify properties on Objects. Cryo will recover properties from
  • Functions — try { var withJSON = JSON.parse(JSON.stringify(fn)); withJSON(); } catch(e) { console.log('error'); // error }

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the cryo mcp server does with a few real requests.

Choosing this one

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Cryo's toolset — browser, Undefined, Date and 4 more — is a fair guide to whether it matches your workflow. It is maintained by hunterloftis; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
browserAdd the [latest minified build](https://github.com/hunterloftis/cryo/tree/master/build) to your project as a script:
UndefinedCryo takes a verbatim snapshot of all your properties, including those that are undefined - which JSON ignores.
DateCryo successfully works with Date objects, which JSON.stringify() mangles into strings.
ReferencesJSON.stringify() makes multiple copies of single objects, losing object relationships. When several references to the same object are stringified with JSON, those references are turned into clones of each other. Cryo mai
InfinityCryo successfully stringifies and parses Infinity, which JSON mangles into null.
PropertiesObjects, Arrays, Dates, and Functions can all hold properties, but JSON will only stringify properties on Objects. Cryo will recover properties from all containers:
Functionstry { var withJSON = JSON.parse(JSON.stringify(fn)); withJSON(); } catch(e) { console.log('error'); // error }

How to install the Cryo MCP server

{
  "mcpServers": {
    "cryo": {
      "command": "npx",
      "args": ["-y", "cryo"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Cryo to browser.
  • Use Cryo to Undefined.
  • Use Cryo to Date.

Frequently asked questions

It connects Cryo to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (browser, Undefined, Date, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Cryo directly.