AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Vrchat Mcp

mcp-sawa-zen-vrchat-mcp · by sawa-zen

This project is a Model Context Protocol (MCP) server for interacting with the VRChat API.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add mcp-sawa-zen-vrchat-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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 No
  • 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-sawa-zen-vrchat-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Vrchat Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

[](https://badge.fury.io/js/vrchat-mcp) [](https://opensource.org/licenses/MIT)

[日本語](./README.ja.md) | [한국어](./README.ko.md)

This project is a Model Context Protocol (MCP) server for interacting with the VRChat API. It allows you to retrieve various information from VRChat using a standardized protocol.

Overview

The VRChat MCP server provides a way to access VRChat's API endpoints in a structured manner. It supports a wide range of functionalities, including user authentication, retrieving user and friend information, accessing avatar and world data, and more.

Usage

To start the server, ensure you have the necessary environment variables set:

export VRCHAT_USERNAME=your_username
export VRCHAT_AUTH_TOKEN=your_auth_token

> [!NOTE] > #### How to obtain AUTH TOKEN > > You can use the following command to login and obtain an auth token: > `` > $ npx vrchat-auth-token-checker > > VRChat Username: your-username > Password: ******** > > # If 2FA is enabled > 2FA Code: 123456 > > # Success output > Auth Token: authcookie-xxxxx > `` > Command source code > > Please handle the obtained token with care as it has a very long lifetime

Then, run the following command:

npx vrchat-mcp

This will launch the MCP server, allowing you to interact with the VRChat API through the defined tools.

Usage with Claude Desktop

To use this MCP server with Claude Desktop, you do not need to run npx vrchat-mcp manually. Instead, add the following configuration to your Claude Desktop config file:

  • MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "vrchat-mcp": {
      "command": "npx",
      "args": ["vrchat-mcp"],
      "env": {
        "VRCHAT_USERNAME": "your-username",
        "VRCHAT_AUTH_TOKEN": "your-auth-token"
      }
    }
  }
}

Then, start Claude Desktop as usual. If you have to use nodenv or nvm, you may need to specify the full path to the npx command.

Available Tools

This Model Context Protocol server provides the following VRChat-related tools:

User Related

  • vrchatgetfriends_list: Get a list of friends
  • vrchatsendfriend_request: Send a friend request

Avatar Related

  • vrchatsearchavatars: Search for avatars
  • vrchatselectavatar: Select and switch to a specific avatar

World Related

  • vrchatsearchworlds: Search for worlds
  • vrchatlistfavorited_worlds: Get a list of favorited worlds

Instance Related

  • vrchatcreateinstance: Create a new instance
  • vrchatgetinstance: Get information about a specific instance

Group Related

  • vrchatsearchgroups: Search for groups
  • vrchatjoingroup: Join a group

Favorites Related

  • vrchatlistfavorites: Get a list of favorites
  • vrchataddfavorite: Add a new favorite
  • vrchatlistfavorite_groups: Get a list of favorite groups

Invite Related

  • vrchatlistinvite_messages: Get a list of invite messages
  • vrchatrequestinvite: Request an invite
  • vrchatgetinvite_message: Get a specific invite message

Notification Related

  • vrchatgetnotifications: Get a list of notifications

Debugging

First, build the project:

npm install
npm run build

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector "./dist/main.js"

Be sure that environment variables are properly configured.

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

Publishing

To publish a new version of the package, follow these steps:

  1. Pull the latest code from the main branch

``bash git checkout main git pull origin main ``

  1. Build the package

``bash npm run build ``

  1. Publish to npm

``bash npm publish ``

  1. Push changes to the remote repository

``bash git push origin main --tags ``

Contributing

Contributions are welcome! Please fork the repository and submit a pull request for any improvements or bug fixes.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Source & license

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

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

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.