Install
$ agentstack add mcp-entire-vc-evc-team-relay-openclaw-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →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?utmsource=github&utmmedium=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 skill connects your AI agent to Obsidian notes managed by 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, it closes the loop: code → repo docs → vault → agent → code.
Prerequisites
- OpenClaw installed
- A running EVC Team Relay instance (self-hosted or hosted)
- A user account on the Relay control plane with access to shared folders
curlandjqon the host
Install
# 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):
{
"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:
{
"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
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 | | Team Relay Plugin | Obsidian plugin for Team Relay | repo | | Relay MCP | MCP server for Claude Code, Codex, OpenCode | repo | | OpenClaw Skill ← you are here | OpenClaw agent skill (bash) | this repo | | Local Sync | Vault ↔ AI dev tools sync | repo | | Spark MCP | MCP server for AI workflow catalog | repo |
Community
- 🌐 entire.vc
- 💬 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
- Source: 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.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.