The VRChat MCP Server is a tool for interacting with the VRChat API through a Model Context Protocol, offering structured access to various functionalities:
Manage user information (retrieve your own data)
Handle friend-related actions (view friends list, send friend requests)
Search, select, and switch avatars
Explore worlds (search, list favorites, create instances)
Manage groups (search, join, list favorite groups)
Handle invitations (request invites, view invite messages)
Access notifications
Debug server operations via MCP Inspector
Integrate with Claude Desktop for automated management
Enables configuration of the MCP server using environment variables stored in a .env file for credentials and settings.
Hosts the repository for cloning and contributing to the project.
Used as the runtime environment for executing the MCP server.
Handles dependency management and provides build/start scripts for the MCP server.
Provides access to VRChat's API endpoints for retrieving user data, friend information, avatar details, world data, and other VRChat-specific information through a standardized protocol.
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:
How to obtain AUTH TOKEN
You can use the following command to login and obtain an auth token:
Please handle the obtained token with care as it has a very long lifetime
Then, run the following command:
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
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
vrchat_get_friends_list: Get a list of friends
vrchat_send_friend_request: Send a friend request
Avatar Related
vrchat_search_avatars: Search for avatars
vrchat_select_avatar: Select and switch to a specific avatar
World Related
vrchat_search_worlds: Search for worlds
vrchat_list_favorited_worlds: Get a list of favorited worlds
Instance Related
vrchat_create_instance: Create a new instance
vrchat_get_instance: Get information about a specific instance
Group Related
vrchat_search_groups: Search for groups
vrchat_join_group: Join a group
Favorites Related
vrchat_list_favorites: Get a list of favorites
vrchat_add_favorite: Add a new favorite
vrchat_list_favorite_groups: Get a list of favorite groups
Invite Related
vrchat_list_invite_messages: Get a list of invite messages
vrchat_request_invite: Request an invite
vrchat_get_invite_message: Get a specific invite message
Notification Related
vrchat_get_notifications: Get a list of notifications
Debugging
First, build the project:
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:
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:
Pull the latest code from the main branch
git checkout main git pull origin mainBuild the package
npm run buildPublish to npm
npm publishPush changes to the remote repository
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.
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
A Model Context Protocol server that allows AI assistants to interact with the VRChat API, enabling retrieval of user information, friends lists, and other VRChat data through a standardized interface.
Related Resources
Related MCP Servers
- -securityFlicense-qualityA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.Last updated -361
- -securityFlicense-qualityA basic Model Context Protocol server implementation that demonstrates core functionality including tools and resources for AI chat applications.Last updated -
- AsecurityAlicenseAqualityA Model Context Protocol server that enables AI assistants to communicate with each other using Inter-Process Communication, featuring natural language commands and cross-platform compatibility.Last updated -9104MIT License