# Evc Team Relay Openclaw Skill

> OpenClaw AI agent skill — read and write Obsidian notes via Team Relay REST API

- **Type:** MCP server
- **Install:** `agentstack add mcp-entire-vc-evc-team-relay-openclaw-skill`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [entire-vc](https://agentstack.voostack.com/s/entire-vc)
- **Installs:** 0
- **Category:** [Productivity](https://agentstack.voostack.com/c/productivity)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [entire-vc](https://github.com/entire-vc)
- **Source:** https://github.com/entire-vc/evc-team-relay-openclaw-skill
- **Website:** http://entire.vc/team-relay/ai/

## Install

```sh
agentstack add mcp-entire-vc-evc-team-relay-openclaw-skill
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# EVC Team Relay — OpenClaw Skill

[](https://opensource.org/licenses/MIT)
[](https://github.com/openclaw/openclaw)
[](https://spark.entire.vc/assets/evc-team-relay-openclaw-skill?utm_source=github&utm_medium=readme)

**Give your AI agent read/write access to your Obsidian vault.**

> Your agent reads your notes, creates new ones, and stays in sync — all through the Team Relay API.

---

## What It Does

This [OpenClaw](https://github.com/openclaw/openclaw) skill connects your AI agent to Obsidian notes managed by [EVC Team Relay](https://github.com/entire-vc/evc-team-relay):

- **List** shared folders and documents
- **Read** note content as Markdown
- **Create** new notes in shared folders
- **Write** updates to existing notes
- **Delete** notes when no longer needed

Your agent works with the same notes your team edits in Obsidian — no copy/paste, no stale context.

---

## Use Cases

### AI-Assisted Knowledge Management
Your agent reads specs, updates status docs, creates meeting notes — all directly in your vault.

### Agent-to-Human Handoff
Agent writes analysis/research into a shared folder → you review in Obsidian → refine → agent picks up changes.

### Automated Documentation
Agent monitors code changes and keeps vault docs up to date. Combined with [Local Sync](https://github.com/entire-vc/evc-local-sync-plugin), it closes the loop: code → repo docs → vault → agent → code.

---

## Prerequisites

- [OpenClaw](https://github.com/openclaw/openclaw) installed
- A running [EVC Team Relay](https://github.com/entire-vc/evc-team-relay) instance (self-hosted or [hosted](https://entire.vc))
- A user account on the Relay control plane with access to shared folders
- `curl` and `jq` on the host

---

## Install

```bash
# Copy to OpenClaw skills directory
cp -r . ~/.openclaw/skills/evc-team-relay/
chmod +x ~/.openclaw/skills/evc-team-relay/scripts/*.sh
```

## Configure

Set environment variables in your OpenClaw config (`~/.openclaw/openclaw.json`):

```json
{
  "skills": {
    "entries": {
      "evc-team-relay": {
        "env": {
          "RELAY_CP_URL": "https://cp.yourdomain.com",
          "RELAY_EMAIL": "agent@yourdomain.com",
          "RELAY_PASSWORD": "your-password"
        }
      }
    }
  }
}
```

Then add the skill to your agent:

```json
{
  "agents": {
    "list": [
      {
        "id": "main",
        "skills": ["evc-team-relay"]
      }
    ]
  }
}
```

---

## Scripts

| Script | What it does |
|--------|-------------|
| `auth.sh` | Authenticate and get JWT token |
| `list-shares.sh` | List all accessible shared folders |
| `list-files.sh` | List files in a shared folder |
| `read.sh` | Read note content |
| `write.sh` | Update existing note |
| `create-file.sh` | Create new note in a folder |
| `delete-file.sh` | Delete a note |

---

## Quick Test

```bash
cd ~/.openclaw/skills/evc-team-relay

# Set env
export RELAY_CP_URL="https://cp.yourdomain.com"
export RELAY_EMAIL="agent@yourdomain.com"
export RELAY_PASSWORD="your-password"

# Authenticate
TOKEN=$(bash scripts/auth.sh)

# List shared folders
bash scripts/list-shares.sh "$TOKEN"

# List files in a folder
bash scripts/list-files.sh "$TOKEN" ""

# Read a note
bash scripts/read.sh "$TOKEN" "" ""

# Write a note
echo "# Hello from my agent" | bash scripts/write.sh "$TOKEN" "" "" -
```

---

## How It Works

```
┌─────────────┐     REST API      ┌──────────────┐     Yjs CRDT      ┌──────────────┐
│  AI Agent   │ ◄──────────────► │  Team Relay  │ ◄──────────────► │   Obsidian   │
│ (OpenClaw)  │   read / write   │   Server     │    real-time     │    Client    │
└─────────────┘                  └──────────────┘      sync         └──────────────┘
```

The skill talks to Team Relay's REST API. Team Relay stores documents as Yjs CRDTs and syncs them to connected Obsidian clients in real-time. Changes made by the agent appear in Obsidian instantly — and vice versa.

---

## Part of the Entire VC Toolbox

| Product | What it does | Link |
|---------|-------------|------|
| **Team Relay** | Self-hosted collaboration server | [repo](https://github.com/entire-vc/evc-team-relay) |
| **Team Relay Plugin** | Obsidian plugin for Team Relay | [repo](https://github.com/entire-vc/evc-team-relay-obsidian-plugin) |
| **Relay MCP** | MCP server for Claude Code, Codex, OpenCode | [repo](https://github.com/entire-vc/evc-team-relay-mcp) |
| **OpenClaw Skill** ← you are here | OpenClaw agent skill (bash) | this repo |
| **Local Sync** | Vault ↔ AI dev tools sync | [repo](https://github.com/entire-vc/evc-local-sync-plugin) |
| **Spark MCP** | MCP server for AI workflow catalog | [repo](https://github.com/entire-vc/evc-spark-mcp) |

## Community

- 🌐 [entire.vc](https://entire.vc)
- 💬 [Discussions](https://github.com/entire-vc/.github/discussions)
- 📧 in@entire.vc

## License

MIT — Copyright (c) 2026 Entire VC

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [entire-vc](https://github.com/entire-vc)
- **Source:** [entire-vc/evc-team-relay-openclaw-skill](https://github.com/entire-vc/evc-team-relay-openclaw-skill)
- **License:** MIT
- **Homepage:** http://entire.vc/team-relay/ai/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-entire-vc-evc-team-relay-openclaw-skill
- Seller: https://agentstack.voostack.com/s/entire-vc
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
