VRChat MCP Server

by sawa-zen
Verified
{ "name": "vrchat-mcp", "version": "0.9.0", "description": "VRChat MCP Server - Access VRChat API through Model Context Protocol", "type": "module", "main": "dist/main.js", "repository": { "type": "git", "url": "git+https://github.com/sawa-zen/vrchat-mcp.git" }, "homepage": "https://github.com/sawa-zen/vrchat-mcp#readme", "bugs": { "url": "https://github.com/sawa-zen/vrchat-mcp/issues" }, "keywords": [ "vrchat", "mcp", "model-context-protocol", "api", "claude" ], "author": "sawa-zen", "license": "MIT", "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" }, "bin": { "vrchat-mcp": "dist/main.js" }, "scripts": { "prepare": "npm run build", "build": "tsc && chmod +x dist/main.js", "start": "node dist/main.js", "inspector": "npx @modelcontextprotocol/inspector node dist/main.js", "dev": "tsc -w", "lint": "eslint ." }, "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "dotenv": "^16.0.3", "otplib": "^12.0.1", "vrchat": "^1.10.1", "zod": "^3.24.2" }, "devDependencies": { "@eslint/js": "^9.22.0", "@types/node": "^18.15.11", "eslint": "^9.22.0", "typescript": "^5.8.2", "typescript-eslint": "^8.26.1" } }