Skip to content
VS Code

evc team relay mcp for VS Code

io.github.entire-vc/evc-team-relay-mcp

MCP server for AI agent read/write access to Obsidian vaults via EVC Team Relay.

client:VS Code transport:stdio runtime:pypi

Install evc team relay mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "relay-cp-url",
      "description": "RELAY_CP_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "relay-agent-key",
      "description": "RELAY_AGENT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "relay-agent-keys",
      "description": "RELAY_AGENT_KEYS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "relay-email",
      "description": "RELAY_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "relay-password",
      "description": "RELAY_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "evc-team-relay-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "evc-team-relay-mcp"
      ],
      "env": {
        "RELAY_CP_URL": "${input:relay-cp-url}",
        "RELAY_AGENT_KEY": "${input:relay-agent-key}",
        "RELAY_AGENT_KEYS": "${input:relay-agent-keys}",
        "RELAY_EMAIL": "${input:relay-email}",
        "RELAY_PASSWORD": "${input:relay-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

evc team relay mcp in other clients