Jetson

ImplCache on Jetson Orin NX

The Jetson package lets you keep the knowledge base on an edge device and connect Cursor from another machine on a trusted network.

Why Jetson

Some teams want the corpus and MCP server on a small always-on host—close to lab hardware, cameras, or other edge workflows—while developers still use Cursor on a laptop. ImplCache ships a dedicated package for NVIDIA Jetson Orin NX.

Get the package

Use dist-jetson-orin-nx/ from the GitHub repository. It includes the ARM-targeted binary, ingestcli, starter database, and helper scripts such as run-librarian.sh and run-librarian-lan.sh.

Local Librarian on the device

cd dist-jetson-orin-nx
chmod +x implcache-mcp ingestcli run-*.sh
./run-librarian.sh
# http://127.0.0.1:8080/

LAN / remote Cursor

For remote clients on a trusted network, use the LAN helper (or equivalent flags) so the HTTP MCP endpoint is reachable:

./run-librarian-lan.sh
# Cursor mcp.json example:
{
  "mcpServers": {
    "implCacheRemote": {
      "url": "http://<jetson-host>:8080/mcp"
    }
  }
}

Replace <jetson-host> with the device hostname or IP. Prefer a network you control. If you expose beyond loopback, plan for reverse proxying, HTTPS, and Librarian tokens as described in the project docs.

Security checklist

  • Do not expose admin mutations to the public internet.
  • Keep -allow-remote-http limited to trusted LANs.
  • Treat the SQLite database as sensitive—same as the source you ingested.
  • Read docs/REMOTE.md before production use.

Ready to try it? Packages ship for Windows, Linux, and Jetson.

Run locally GitHub