Skip to content
VS Code

VRChat MCP for VS Code

io.github.basic-bit/vrchat-mcp

MCP server for VRChat friends, worlds, groups, events, notifications, and VRCX history.

client:VS Code transport:stdio runtime:npm

Install VRChat MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vrchat-mcp-config-file",
      "description": "VRCHAT_MCP_CONFIG_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-user-agent",
      "description": "VRCHAT_MCP_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-log-level",
      "description": "VRCHAT_MCP_LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-cookie-store",
      "description": "VRCHAT_MCP_COOKIE_STORE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-cookie-file",
      "description": "VRCHAT_MCP_COOKIE_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-allow-writes",
      "description": "VRCHAT_MCP_ALLOW_WRITES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vrchat-mcp-upload-roots",
      "description": "VRCHAT_MCP_UPLOAD_ROOTS",
      "password": true
    }
  ],
  "servers": {
    "vrchat-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@basicbit/vrchat-mcp"
      ],
      "env": {
        "VRCHAT_MCP_CONFIG_FILE": "${input:vrchat-mcp-config-file}",
        "VRCHAT_MCP_USER_AGENT": "${input:vrchat-mcp-user-agent}",
        "VRCHAT_MCP_LOG_LEVEL": "${input:vrchat-mcp-log-level}",
        "VRCHAT_MCP_COOKIE_STORE": "${input:vrchat-mcp-cookie-store}",
        "VRCHAT_MCP_COOKIE_FILE": "${input:vrchat-mcp-cookie-file}",
        "VRCHAT_MCP_ALLOW_WRITES": "${input:vrchat-mcp-allow-writes}",
        "VRCHAT_MCP_UPLOAD_ROOTS": "${input:vrchat-mcp-upload-roots}"
      }
    }
  }
}

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

VRChat MCP in other clients