Vrchat Mcp
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.
sawa-zen
Tools
vrchat_get_current_user
Retrieve your own VRChat user information
vrchat_get_friends_list
Retrieve a list of VRChat friend information. The following information can be retrieved: - "bio" - "bioLinks" - "currentAvatarImageUrl" - "currentAvatarThumbnailImageUrl" - "currentAvatarTags" - "developerType" - "displayName" - "fallbackAvatar" - "id" - "isFriend" - "last_platform" - "last_login" - "profilePicOverride" - "pronouns" - "status" - "statusDescription" - "tags" - "userIcon" - "location" - "friendKey"
vrchat_search_avatars
Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other people's avatars.
vrchat_search_worlds
Search and list worlds by query filters.
vrchat_create_instance
Create a new instance of a world.
vrchat_join_group
Join a VRChat group by ID
vrchat_search_groups
Search VRChat groups by name or shortCode
README
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.
<a href="https://youtu.be/0MRxhzlFCkw"> <img width="300" src="https://github.com/user-attachments/assets/85c00cc4-46b3-4f66-ab36-bf2891fdb283" alt="YouTube" /> </a>
<a href="https://glama.ai/mcp/servers/u763zoyi5a"> <img width="380" height="200" src="https://glama.ai/mcp/servers/u763zoyi5a/badge" /> </a>
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_PASSWORD=your_password
export VRCHAT_TOTP_SECRET=your_totp_secret
export VRCHAT_EMAIL=your_email@example.com
[!NOTE]
Obtain your TOTP secret
- Visit the VRChat Profile and enable Two-factor authentication.
- Decode the displayed QR code to get a string like
otpauth://totp/VRChat:your@email.com?secret=XXXXXXXXXXXXXXXXXXX&issuer=VRChat
.- Use the
XXXXXXXXXXXXXXXXXXX
part as your TOTP secret.This method may have security concerns, so proceed with caution.
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_PASSWORD": "your-password",
"VRCHAT_TOTP_SECRET": "your-totp-secret",
"VRCHAT_EMAIL": "your-email@example.com"
}
}
}
}
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.
VRChat API Endpoints
This is a list of endpoints from the VRChat API that our Model Context Protocol server supports or plans to support. Both GET and POST methods are included to provide comprehensive functionality. The checkboxes indicate the implementation status of each endpoint.
Authentication and User Information
- [x] Get current user info
- [ ] Search users
- [ ] Get specific user profile
- [ ] Get user groups
- [ ] Get player moderations
- [ ] Get user status
- [ ] Update user info
- [ ] Update user status
- [ ] Block user
- [ ] Unblock user
Friend Related
- [x] Get friends list
- [ ] Get online friends
- [x] Send friend request
- [ ] Accept/Deny friend request
- [ ] Remove friend
Avatar Related
- [ ] Get own avatars
- [ ] Get favorite avatars
- [x] Search avatars
- [ ] Get specific avatar details
- [ ] Get public avatars
- [ ] Create avatar
- [ ] Update avatar
- [ ] Delete avatar
- [x] Select avatar
- [ ] Favorite/Unfavorite avatar
World Related
- [ ] Get worlds list
- [ ] Get active worlds
- [ ] Get recently visited worlds
- [ ] Get favorite worlds
- [x] Search worlds
- [ ] Get specific world details
- [ ] Get world instances
- [ ] Get public worlds
- [ ] Create world
- [ ] Update world
- [ ] Delete world
- [ ] Favorite/Unfavorite world
Instance Related
- [x] Create instance
- [x] Get instance info
- [ ] Get instance attendees
- [ ] Get instance short name
- [ ] Join instance
- [ ] Leave instance
- [ ] Invite user to instance
File Related
- [ ] Get file info
- [ ] Get file download info
- [ ] Get file status
Group Related
- [x] Search groups
- [ ] Get specific group info
- [ ] Get group members
- [ ] Get group permissions
- [ ] Get group requests
- [ ] Get group invites
- [ ] Get group bans
- [ ] Get group galleries
- [ ] Get group owned worlds
- [ ] Create group
- [ ] Update group
- [ ] Delete group
- [x] Join group
- [ ] Leave group
- [ ] Invite user to group
- [ ] Accept/Deny group invite
- [ ] Ban user from group
- [ ] Unban user from group
Notification Related
- [ ] Get notifications list
- [ ] Get friend requests
- [ ] Get unread notification count
- [ ] Mark notification as read
- [ ] Delete notification
- [ ] Clear all notifications
Inventory Related
- [ ] Get license types
- [ ] Get owned licenses
- [ ] Get stores list
System Related
- [ ] Get API configuration
- [ ] Get API limits
- [ ] Check system health
- [ ] Get online users count
- [ ] Get server announcements
Favorites
- [x] List Favorites
- [x] Add Favorite
- [ ] Remove Favorite
- [x] List Favorite Groups
- [ ] Show Favorite Group
- [ ] Update Favorite Group
- [ ] Clear Favorite Group
- [ ] Get Favorite Limits
Invites
- [x] List Invite Messages
- [x] Request Invite
- [ ] Send Invite
- [x] Get Invite Message
- [ ] Update Invite Message
Others
- [ ] Get tags list
- [ ] Get invisibles list
- [ ] Get moderations
- [ ] Get favorite group types
- [ ] Create moderation
- [ ] Delete moderation
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:
-
Pull the latest code from the main branch
git checkout main git pull origin main
-
Update the version as needed
# For patch version updates (e.g., 0.1.2 → 0.1.3) npm version patch # For minor version updates (e.g., 0.1.2 → 0.2.0) npm version minor # For major version updates (e.g., 0.1.2 → 1.0.0) npm version major
-
Build the package
npm run build
-
Publish to npm
npm publish
-
Push 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.