Skip to content

MeshPOP

AI writes the code. MeshPOP runs it.

MeshPOP is an infrastructure stack that lets AI and humans build, deploy, and operate services across a server mesh.

The Stack

AI / CLI
   │
   ▼
┌─────────────────────────────────────────┐
│  mpop (control plane)                   │  pip install meshpop
│  60+ MCP tools, monitoring, deployment  │
├─────────────────────────────────────────┤
│  vssh (transport)                       │  pip install vssh
│  SSH, file transfer, P2P, tunneling     │
├─────────────────────────────────────────┤
│  Wire (network)                         │  pip install meshpop-wire
│  WireGuard mesh VPN, NAT traversal      │
├─────────────────────────────────────────┤
│  Your servers                           │
└─────────────────────────────────────────┘

  MeshDB (search)      pip install meshpop-db
  ← indexes everything, powers AI context →

  Vault (secrets)      pip install sv-vault
  ← identity & encryption across all layers →

Install Everything

pip install vssh meshpop meshpop-wire meshpop-db sv-vault

5 Layers

Layer Component What it does Install
1 Wire WireGuard mesh VPN with P2P and relay fallback pip install meshpop-wire
2 vssh Distributed SSH, file transfer, tunneling pip install vssh
3 mpop Control plane — monitoring, deployment, 60+ MCP tools pip install meshpop
4 MeshDB Full-text + semantic search across all servers pip install meshpop-db
5 Vault AES-256-GCM secrets with Shamir's Secret Sharing pip install sv-vault

For AI Tools (Claude Code, Cursor)

After installing, add to your MCP config:

{
  "mcpServers": {
    "vssh":   { "command": "vssh-mcp" },
    "mpop":   { "command": "mpop-mcp" },
    "wire":   { "command": "wire-mcp" },
    "meshdb": { "command": "meshdb-mcp" }
  }
}

This gives your AI access to 80+ tools for managing your entire infrastructure.

The AI Loop

MeshPOP enables a closed loop where AI develops and operates services:

AI writes code  →  mpop deploys (via vssh)  →  cluster runs
     ↑                                              │
     └──── AI reads logs, fixes ◄───────────────────┘

Examples

  • api.airtune.ai — Radio analytics API built and operated by AI on MeshPOP

Source

Repo Description
meshpop/vssh Transport layer
meshpop/mpop Control plane
meshpop/wire Mesh VPN
meshpop/meshdb Search engine
meshpop/vault Secret management