---
name: MirageGrid
description: Use when assigning a mesh circuit, routing peers, or installing the node-mesh VPN. MirageGrid is a true node-mesh VPN and anonymity network. Author Aziel Eliab.
---

# MirageGrid

You enter the booth. The mesh selects a booth and builds a circuit. You leave with no persistent booth identity.

Author: **Aziel Eliab**.

**THIS IS:** a node-mesh VPN and anonymity network (25 persistent peers, onion circuits, userspace SOCKS5).

**THIS IS NOT:** a crime tool, a log-wipe, or a guarantee against a global adversary. Hosted `/v1` does not increment downloads.

Always send `User-Agent: Mozilla/5.0`. Cloudflare Workers may 403 an empty agent.

## Endpoints (this Worker)

Host: `https://miragegrid-download-tracker.vibelock.workers.dev`

| Method | Path | What |
|--------|------|------|
| GET | `/v1/health` | Liveness. Does not increment downloads. |
| GET | `/v1/skill` | This markdown. Does not increment downloads. |
| GET | `/v1/nodes` | List the 25 mesh nodes. |
| GET | `/v1/mesh` | Topology, adjacency, default listen ports. |
| POST | `/v1/route` | Shortest peer path between two nodes. |
| POST | `/v1/assign` | Assign a session circuit (entry + hops + path). |
| POST | `/v1/circuit` | Build circuit hops from entropy/timestamp (or fresh). |
| POST | `/v1/verify-receipt` | Verify an internal receipt. |

OpenAPI: `https://miragegrid-download-tracker.vibelock.workers.dev/openapi.json`

Catalog OpenAPI: `https://aziel-runtime.vibelock.workers.dev/openapi.json`

MCP: `POST https://aziel-runtime.vibelock.workers.dev/mcp`

## How to call (Mozilla/5.0)

```bash
curl -s -A 'Mozilla/5.0' https://miragegrid-download-tracker.vibelock.workers.dev/v1/health
curl -s -A 'Mozilla/5.0' -X POST https://miragegrid-download-tracker.vibelock.workers.dev/v1/assign \
  -H 'content-type: application/json' -d '{}'
curl -s -A 'Mozilla/5.0' https://miragegrid-download-tracker.vibelock.workers.dev/v1/mesh
```

Grok: import the catalog OpenAPI as a custom tool. ChatGPT: GPT Actions. Venice: HTTP tools.

## Local (after one-click install)

```bash
curl -fsSL https://miragegrid-download-tracker.vibelock.workers.dev/install.sh | bash
miragegrid ui
miragegrid vpn
```

Then open http://127.0.0.1:8080 and SOCKS5 at 127.0.0.1:1080.

Apache-2.0 (or the repo LICENSE). Forks are welcome and always allowed.
