Vrchat Mcp
This project is a Model Context Protocol (MCP) server for interacting with the VRChat API.
Overview
VRChat MCP (Model Context Protocol) is a server designed for interacting with the VRChat API, allowing users to retrieve various information from VRChat using a standardized protocol.
To use VRChat MCP, clone the repository from GitHub, install the dependencies, set up your environment variables, and start the server to interact with the VRChat API.
- User authentication and information retrieval - Access to avatar and world data - Support for various VRChat API endpoints
- Retrieving user profiles and friends list from VRChat.
- Accessing avatar details and world information.
- Integrating VRChat functionalities into other applications.
Add to your AI client
Use these steps to connect Vrchat Mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"vrchat-mcp-sawa-zen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"vrchat-mcp-sawa-zen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"vrchat-mcp-sawa-zen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"vrchat-mcp-sawa-zen": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"vrchat-mcp-sawa-zen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"vrchat-mcp-sawa-zen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-vrchat-mcp-sawa-zen"
]
}
}
}FAQ
Is VRChat MCP free to use?
Yes! VRChat MCP is free to use for everyone.
What programming language is used?
The project is developed in TypeScript.
How can I contribute to the project?
Contributions are welcome! You can fork the repository and submit a pull request for improvements or bug fixes.