ai-crew-sync 0.5.2

MCP server that lets a team's AI coding agents (Claude Code, Codex, Cursor or any MCP client) exchange messages, coordinate tasks, share presence and keep shared notes, backed by Postgres
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Create the unprivileged account the unit runs as, and make the environment
# file readable by it but by nobody else — it holds the database password.
set -e
if [ "$1" = "configure" ]; then
    if ! getent group ai-crew-sync >/dev/null; then
        addgroup --system ai-crew-sync
    fi
    if ! getent passwd ai-crew-sync >/dev/null; then
        adduser --system --ingroup ai-crew-sync --no-create-home \
                --home /nonexistent --shell /usr/sbin/nologin ai-crew-sync
    fi
    chown root:ai-crew-sync /etc/ai-crew-sync/ai-crew-sync.env || true
    chmod 640 /etc/ai-crew-sync/ai-crew-sync.env || true
fi
#DEBHELPER#
exit 0