@basicbit/vrchat-mcp 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/package.json +2 -1
- package/dist/src/auth/index.js +4 -1
- package/dist/src/auth/index.js.map +1 -1
- package/dist/src/core/generatedToolOverrides.js +1 -0
- package/dist/src/core/generatedToolOverrides.js.map +1 -1
- package/dist/src/core/operationPolicy.js +19 -1
- package/dist/src/core/operationPolicy.js.map +1 -1
- package/dist/src/generated/vrchat-schemas.js +3 -1
- package/dist/src/generated/vrchat-schemas.js.map +1 -1
- package/dist/src/models/avatars.js +85 -0
- package/dist/src/models/avatars.js.map +1 -1
- package/dist/src/models/groups.js +38 -0
- package/dist/src/models/groups.js.map +1 -1
- package/dist/src/models/invites.js +31 -2
- package/dist/src/models/invites.js.map +1 -1
- package/dist/src/models/status.js +4 -2
- package/dist/src/models/status.js.map +1 -1
- package/dist/src/services/api/client.js +2 -0
- package/dist/src/services/api/client.js.map +1 -1
- package/dist/src/services/avatars/index.js +166 -1
- package/dist/src/services/avatars/index.js.map +1 -1
- package/dist/src/services/invites/curated.js +35 -16
- package/dist/src/services/invites/curated.js.map +1 -1
- package/dist/src/tools/curated/avatars.js +41 -3
- package/dist/src/tools/curated/avatars.js.map +1 -1
- package/dist/src/tools/curated/groups.js +2 -2
- package/dist/src/tools/curated/groups.js.map +1 -1
- package/dist/src/tools/curated/invites.js +1 -1
- package/dist/src/tools/curated/invites.js.map +1 -1
- package/dist/src/tools/raw.js +5 -1
- package/dist/src/tools/raw.js.map +1 -1
- package/docs/robust-notes.md +9 -1
- package/docs/spec-drift.md +71 -0
- package/docs/tools.md +231 -212
- package/package.json +2 -1
- package/server.json +2 -2
package/docs/tools.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Tool Catalog (generated)
|
|
2
2
|
|
|
3
|
-
Generated: 2026-
|
|
3
|
+
Generated: 2026-08-03T05:13:46.752Z
|
|
4
4
|
|
|
5
5
|
Spec: VRChat API Documentation (1.20.7)
|
|
6
6
|
|
|
@@ -102,6 +102,132 @@ Output schema:
|
|
|
102
102
|
}
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
### vrchat_avatar_update
|
|
106
|
+
Edit your own avatar metadata: name, description, releaseStatus, and content tags. Asset fields (assetUrl, unityPackageUrl, unityVersion, version) are unreachable - a bad value there repoints the avatar at the wrong build with no undo. Content tags: content_sex, content_adult, content_violence, content_gore, content_horror. Tags merge rather than replace, so author tags survive; clearContentTags strips every content_* tag, including ones this build does not know. CAUTION - releaseStatus is risky in BOTH directions; confirm intent before changing it. Going public can expose a creators work against their terms, leak a private avatar, or breach VRChats content policy depending on what the avatar contains. Going private breaks the avatar for everyone currently wearing it. Use dryRun to preview. (write, destructive)
|
|
107
|
+
|
|
108
|
+
Input schema:
|
|
109
|
+
|
|
110
|
+
```json
|
|
111
|
+
{
|
|
112
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
113
|
+
"type": "object",
|
|
114
|
+
"properties": {
|
|
115
|
+
"avatar": {
|
|
116
|
+
"type": "string",
|
|
117
|
+
"minLength": 1,
|
|
118
|
+
"description": "Avatar to edit: an avtr_ ID, or the exact name of one of your own avatars."
|
|
119
|
+
},
|
|
120
|
+
"name": {
|
|
121
|
+
"description": "New name for the avatar.",
|
|
122
|
+
"type": "string",
|
|
123
|
+
"minLength": 1
|
|
124
|
+
},
|
|
125
|
+
"description": {
|
|
126
|
+
"description": "New description. Pass \"\" to clear it.",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
"releaseStatus": {
|
|
130
|
+
"description": "Publication state. Risky in both directions — see the tool description before changing it.",
|
|
131
|
+
"type": "string",
|
|
132
|
+
"enum": [
|
|
133
|
+
"public",
|
|
134
|
+
"private",
|
|
135
|
+
"hidden"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"addTags": {
|
|
139
|
+
"description": "Content tags to add. Merged into the existing tags; nothing else is removed.",
|
|
140
|
+
"minItems": 1,
|
|
141
|
+
"type": "array",
|
|
142
|
+
"items": {
|
|
143
|
+
"type": "string",
|
|
144
|
+
"enum": [
|
|
145
|
+
"content_sex",
|
|
146
|
+
"content_adult",
|
|
147
|
+
"content_violence",
|
|
148
|
+
"content_gore",
|
|
149
|
+
"content_horror"
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"removeTags": {
|
|
154
|
+
"description": "Content tags to remove. Other tags, including author tags, are left alone.",
|
|
155
|
+
"minItems": 1,
|
|
156
|
+
"type": "array",
|
|
157
|
+
"items": {
|
|
158
|
+
"type": "string",
|
|
159
|
+
"enum": [
|
|
160
|
+
"content_sex",
|
|
161
|
+
"content_adult",
|
|
162
|
+
"content_violence",
|
|
163
|
+
"content_gore",
|
|
164
|
+
"content_horror"
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"clearContentTags": {
|
|
169
|
+
"description": "Remove every content_* tag, including any this build does not know about.",
|
|
170
|
+
"type": "boolean"
|
|
171
|
+
},
|
|
172
|
+
"dryRun": {
|
|
173
|
+
"description": "Compute and return the exact change without writing it.",
|
|
174
|
+
"type": "boolean"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"required": [
|
|
178
|
+
"avatar"
|
|
179
|
+
],
|
|
180
|
+
"additionalProperties": false
|
|
181
|
+
}
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
Output schema:
|
|
185
|
+
|
|
186
|
+
```json
|
|
187
|
+
{
|
|
188
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
189
|
+
"type": "object",
|
|
190
|
+
"properties": {
|
|
191
|
+
"avatarId": {
|
|
192
|
+
"type": "string"
|
|
193
|
+
},
|
|
194
|
+
"name": {
|
|
195
|
+
"type": "string"
|
|
196
|
+
},
|
|
197
|
+
"dryRun": {
|
|
198
|
+
"type": "boolean"
|
|
199
|
+
},
|
|
200
|
+
"status": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"enum": [
|
|
203
|
+
"updated",
|
|
204
|
+
"unchanged"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
"changes": {
|
|
208
|
+
"type": "object",
|
|
209
|
+
"propertyNames": {
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
"additionalProperties": {}
|
|
213
|
+
},
|
|
214
|
+
"tags": {
|
|
215
|
+
"type": "array",
|
|
216
|
+
"items": {
|
|
217
|
+
"type": "string"
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"required": [
|
|
222
|
+
"avatarId",
|
|
223
|
+
"dryRun",
|
|
224
|
+
"status",
|
|
225
|
+
"tags"
|
|
226
|
+
],
|
|
227
|
+
"additionalProperties": false
|
|
228
|
+
}
|
|
229
|
+
```
|
|
230
|
+
|
|
105
231
|
### vrchat_boop
|
|
106
232
|
Send boops to one or many users. Users may be usr_ ids or exact display names. (write)
|
|
107
233
|
|
|
@@ -4721,6 +4847,8 @@ Output schema:
|
|
|
4721
4847
|
"group-default-role-manage",
|
|
4722
4848
|
"group-galleries-manage",
|
|
4723
4849
|
"group-instance-age-gated-create",
|
|
4850
|
+
"group-instance-announcement-create",
|
|
4851
|
+
"group-instance-bypass-avatar-performance",
|
|
4724
4852
|
"group-instance-calendar-link",
|
|
4725
4853
|
"group-instance-join",
|
|
4726
4854
|
"group-instance-manage",
|
|
@@ -4776,6 +4904,8 @@ Output schema:
|
|
|
4776
4904
|
"group-default-role-manage",
|
|
4777
4905
|
"group-galleries-manage",
|
|
4778
4906
|
"group-instance-age-gated-create",
|
|
4907
|
+
"group-instance-announcement-create",
|
|
4908
|
+
"group-instance-bypass-avatar-performance",
|
|
4779
4909
|
"group-instance-calendar-link",
|
|
4780
4910
|
"group-instance-join",
|
|
4781
4911
|
"group-instance-manage",
|
|
@@ -4825,6 +4955,8 @@ Output schema:
|
|
|
4825
4955
|
"group-default-role-manage",
|
|
4826
4956
|
"group-galleries-manage",
|
|
4827
4957
|
"group-instance-age-gated-create",
|
|
4958
|
+
"group-instance-announcement-create",
|
|
4959
|
+
"group-instance-bypass-avatar-performance",
|
|
4828
4960
|
"group-instance-calendar-link",
|
|
4829
4961
|
"group-instance-join",
|
|
4830
4962
|
"group-instance-manage",
|
|
@@ -4872,221 +5004,98 @@ Input schema:
|
|
|
4872
5004
|
```json
|
|
4873
5005
|
{
|
|
4874
5006
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
4875
|
-
"
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
"
|
|
4879
|
-
|
|
4880
|
-
|
|
4881
|
-
|
|
4882
|
-
|
|
4883
|
-
"
|
|
4884
|
-
|
|
4885
|
-
|
|
4886
|
-
"shortCode": {
|
|
4887
|
-
"type": "string"
|
|
4888
|
-
},
|
|
4889
|
-
"userId": {
|
|
4890
|
-
"type": "string"
|
|
4891
|
-
},
|
|
4892
|
-
"groupRoleId": {
|
|
4893
|
-
"type": "string"
|
|
4894
|
-
}
|
|
4895
|
-
},
|
|
4896
|
-
"required": [
|
|
4897
|
-
"action",
|
|
4898
|
-
"userId",
|
|
4899
|
-
"groupRoleId"
|
|
4900
|
-
],
|
|
4901
|
-
"additionalProperties": false
|
|
5007
|
+
"type": "object",
|
|
5008
|
+
"properties": {
|
|
5009
|
+
"action": {
|
|
5010
|
+
"type": "string",
|
|
5011
|
+
"enum": [
|
|
5012
|
+
"assign_member_role",
|
|
5013
|
+
"remove_member_role",
|
|
5014
|
+
"create_role",
|
|
5015
|
+
"update_role",
|
|
5016
|
+
"delete_role"
|
|
5017
|
+
]
|
|
4902
5018
|
},
|
|
4903
|
-
{
|
|
4904
|
-
"
|
|
4905
|
-
"
|
|
4906
|
-
"action": {
|
|
4907
|
-
"type": "string",
|
|
4908
|
-
"const": "remove_member_role"
|
|
4909
|
-
},
|
|
4910
|
-
"groupId": {
|
|
4911
|
-
"type": "string"
|
|
4912
|
-
},
|
|
4913
|
-
"shortCode": {
|
|
4914
|
-
"type": "string"
|
|
4915
|
-
},
|
|
4916
|
-
"userId": {
|
|
4917
|
-
"type": "string"
|
|
4918
|
-
},
|
|
4919
|
-
"groupRoleId": {
|
|
4920
|
-
"type": "string"
|
|
4921
|
-
}
|
|
4922
|
-
},
|
|
4923
|
-
"required": [
|
|
4924
|
-
"action",
|
|
4925
|
-
"userId",
|
|
4926
|
-
"groupRoleId"
|
|
4927
|
-
],
|
|
4928
|
-
"additionalProperties": false
|
|
5019
|
+
"groupId": {
|
|
5020
|
+
"description": "Target group. Provide groupId or shortCode.",
|
|
5021
|
+
"type": "string"
|
|
4929
5022
|
},
|
|
4930
|
-
{
|
|
4931
|
-
"
|
|
4932
|
-
"
|
|
4933
|
-
"name": {
|
|
4934
|
-
"type": "string"
|
|
4935
|
-
},
|
|
4936
|
-
"description": {
|
|
4937
|
-
"type": "string"
|
|
4938
|
-
},
|
|
4939
|
-
"permissions": {
|
|
4940
|
-
"type": "array",
|
|
4941
|
-
"items": {
|
|
4942
|
-
"type": "string",
|
|
4943
|
-
"enum": [
|
|
4944
|
-
"*",
|
|
4945
|
-
"group-announcement-manage",
|
|
4946
|
-
"group-audit-view",
|
|
4947
|
-
"group-bans-manage",
|
|
4948
|
-
"group-calendar-manage",
|
|
4949
|
-
"group-data-manage",
|
|
4950
|
-
"group-default-role-manage",
|
|
4951
|
-
"group-galleries-manage",
|
|
4952
|
-
"group-instance-age-gated-create",
|
|
4953
|
-
"group-instance-calendar-link",
|
|
4954
|
-
"group-instance-join",
|
|
4955
|
-
"group-instance-manage",
|
|
4956
|
-
"group-instance-moderate",
|
|
4957
|
-
"group-instance-open-create",
|
|
4958
|
-
"group-instance-plus-create",
|
|
4959
|
-
"group-instance-plus-portal",
|
|
4960
|
-
"group-instance-plus-portal-unlocked",
|
|
4961
|
-
"group-instance-public-create",
|
|
4962
|
-
"group-instance-queue-priority",
|
|
4963
|
-
"group-instance-restricted-create",
|
|
4964
|
-
"group-invites-manage",
|
|
4965
|
-
"group-members-manage",
|
|
4966
|
-
"group-members-remove",
|
|
4967
|
-
"group-members-viewall",
|
|
4968
|
-
"group-roles-assign",
|
|
4969
|
-
"group-roles-manage"
|
|
4970
|
-
]
|
|
4971
|
-
}
|
|
4972
|
-
},
|
|
4973
|
-
"isSelfAssignable": {
|
|
4974
|
-
"type": "boolean"
|
|
4975
|
-
},
|
|
4976
|
-
"action": {
|
|
4977
|
-
"type": "string",
|
|
4978
|
-
"const": "create_role"
|
|
4979
|
-
},
|
|
4980
|
-
"groupId": {
|
|
4981
|
-
"type": "string"
|
|
4982
|
-
},
|
|
4983
|
-
"shortCode": {
|
|
4984
|
-
"type": "string"
|
|
4985
|
-
},
|
|
4986
|
-
"roleId": {
|
|
4987
|
-
"type": "string"
|
|
4988
|
-
}
|
|
4989
|
-
},
|
|
4990
|
-
"required": [
|
|
4991
|
-
"action"
|
|
4992
|
-
],
|
|
4993
|
-
"additionalProperties": false
|
|
5023
|
+
"shortCode": {
|
|
5024
|
+
"description": "Target group short code. Provide groupId or shortCode.",
|
|
5025
|
+
"type": "string"
|
|
4994
5026
|
},
|
|
4995
|
-
{
|
|
4996
|
-
"
|
|
4997
|
-
"
|
|
4998
|
-
"name": {
|
|
4999
|
-
"type": "string"
|
|
5000
|
-
},
|
|
5001
|
-
"description": {
|
|
5002
|
-
"type": "string"
|
|
5003
|
-
},
|
|
5004
|
-
"permissions": {
|
|
5005
|
-
"type": "array",
|
|
5006
|
-
"items": {
|
|
5007
|
-
"type": "string",
|
|
5008
|
-
"enum": [
|
|
5009
|
-
"*",
|
|
5010
|
-
"group-announcement-manage",
|
|
5011
|
-
"group-audit-view",
|
|
5012
|
-
"group-bans-manage",
|
|
5013
|
-
"group-calendar-manage",
|
|
5014
|
-
"group-data-manage",
|
|
5015
|
-
"group-default-role-manage",
|
|
5016
|
-
"group-galleries-manage",
|
|
5017
|
-
"group-instance-age-gated-create",
|
|
5018
|
-
"group-instance-calendar-link",
|
|
5019
|
-
"group-instance-join",
|
|
5020
|
-
"group-instance-manage",
|
|
5021
|
-
"group-instance-moderate",
|
|
5022
|
-
"group-instance-open-create",
|
|
5023
|
-
"group-instance-plus-create",
|
|
5024
|
-
"group-instance-plus-portal",
|
|
5025
|
-
"group-instance-plus-portal-unlocked",
|
|
5026
|
-
"group-instance-public-create",
|
|
5027
|
-
"group-instance-queue-priority",
|
|
5028
|
-
"group-instance-restricted-create",
|
|
5029
|
-
"group-invites-manage",
|
|
5030
|
-
"group-members-manage",
|
|
5031
|
-
"group-members-remove",
|
|
5032
|
-
"group-members-viewall",
|
|
5033
|
-
"group-roles-assign",
|
|
5034
|
-
"group-roles-manage"
|
|
5035
|
-
]
|
|
5036
|
-
}
|
|
5037
|
-
},
|
|
5038
|
-
"isSelfAssignable": {
|
|
5039
|
-
"type": "boolean"
|
|
5040
|
-
},
|
|
5041
|
-
"action": {
|
|
5042
|
-
"type": "string",
|
|
5043
|
-
"const": "update_role"
|
|
5044
|
-
},
|
|
5045
|
-
"groupId": {
|
|
5046
|
-
"type": "string"
|
|
5047
|
-
},
|
|
5048
|
-
"shortCode": {
|
|
5049
|
-
"type": "string"
|
|
5050
|
-
},
|
|
5051
|
-
"groupRoleId": {
|
|
5052
|
-
"type": "string"
|
|
5053
|
-
},
|
|
5054
|
-
"order": {
|
|
5055
|
-
"type": "integer",
|
|
5056
|
-
"minimum": -9007199254740991,
|
|
5057
|
-
"maximum": 9007199254740991
|
|
5058
|
-
}
|
|
5059
|
-
},
|
|
5060
|
-
"required": [
|
|
5061
|
-
"action",
|
|
5062
|
-
"groupRoleId"
|
|
5063
|
-
],
|
|
5064
|
-
"additionalProperties": false
|
|
5027
|
+
"userId": {
|
|
5028
|
+
"description": "Member to act on. REQUIRED for assign_member_role and remove_member_role.",
|
|
5029
|
+
"type": "string"
|
|
5065
5030
|
},
|
|
5066
|
-
{
|
|
5067
|
-
"
|
|
5068
|
-
"
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
"
|
|
5084
|
-
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
|
|
5031
|
+
"groupRoleId": {
|
|
5032
|
+
"description": "Existing role to act on. REQUIRED for assign_member_role, remove_member_role, update_role and delete_role. Not used by create_role.",
|
|
5033
|
+
"type": "string"
|
|
5034
|
+
},
|
|
5035
|
+
"roleId": {
|
|
5036
|
+
"description": "create_role only, and optional there: requests a specific ID for the new role instead of letting VRChat assign one. This is NOT the role being edited — that is groupRoleId.",
|
|
5037
|
+
"type": "string"
|
|
5038
|
+
},
|
|
5039
|
+
"name": {
|
|
5040
|
+
"description": "Role name. Used by create_role and update_role.",
|
|
5041
|
+
"type": "string"
|
|
5042
|
+
},
|
|
5043
|
+
"description": {
|
|
5044
|
+
"description": "Role description. Used by create_role and update_role.",
|
|
5045
|
+
"type": "string"
|
|
5046
|
+
},
|
|
5047
|
+
"permissions": {
|
|
5048
|
+
"description": "Complete permission list for the role, replacing the previous one. Used by create_role and update_role. Note group-members-remove and group-bans-manage each require group-members-manage on the same role.",
|
|
5049
|
+
"type": "array",
|
|
5050
|
+
"items": {
|
|
5051
|
+
"type": "string",
|
|
5052
|
+
"enum": [
|
|
5053
|
+
"*",
|
|
5054
|
+
"group-announcement-manage",
|
|
5055
|
+
"group-audit-view",
|
|
5056
|
+
"group-bans-manage",
|
|
5057
|
+
"group-calendar-manage",
|
|
5058
|
+
"group-data-manage",
|
|
5059
|
+
"group-default-role-manage",
|
|
5060
|
+
"group-galleries-manage",
|
|
5061
|
+
"group-instance-age-gated-create",
|
|
5062
|
+
"group-instance-announcement-create",
|
|
5063
|
+
"group-instance-bypass-avatar-performance",
|
|
5064
|
+
"group-instance-calendar-link",
|
|
5065
|
+
"group-instance-join",
|
|
5066
|
+
"group-instance-manage",
|
|
5067
|
+
"group-instance-moderate",
|
|
5068
|
+
"group-instance-open-create",
|
|
5069
|
+
"group-instance-plus-create",
|
|
5070
|
+
"group-instance-plus-portal",
|
|
5071
|
+
"group-instance-plus-portal-unlocked",
|
|
5072
|
+
"group-instance-public-create",
|
|
5073
|
+
"group-instance-queue-priority",
|
|
5074
|
+
"group-instance-restricted-create",
|
|
5075
|
+
"group-invites-manage",
|
|
5076
|
+
"group-members-manage",
|
|
5077
|
+
"group-members-remove",
|
|
5078
|
+
"group-members-viewall",
|
|
5079
|
+
"group-roles-assign",
|
|
5080
|
+
"group-roles-manage"
|
|
5081
|
+
]
|
|
5082
|
+
}
|
|
5083
|
+
},
|
|
5084
|
+
"isSelfAssignable": {
|
|
5085
|
+
"description": "Whether members can assign this role to themselves. create_role and update_role.",
|
|
5086
|
+
"type": "boolean"
|
|
5087
|
+
},
|
|
5088
|
+
"order": {
|
|
5089
|
+
"description": "Display order of the role. update_role only.",
|
|
5090
|
+
"type": "integer",
|
|
5091
|
+
"minimum": -9007199254740991,
|
|
5092
|
+
"maximum": 9007199254740991
|
|
5088
5093
|
}
|
|
5089
|
-
|
|
5094
|
+
},
|
|
5095
|
+
"required": [
|
|
5096
|
+
"action"
|
|
5097
|
+
],
|
|
5098
|
+
"additionalProperties": false
|
|
5090
5099
|
}
|
|
5091
5100
|
```
|
|
5092
5101
|
|
|
@@ -5148,6 +5157,8 @@ Output schema:
|
|
|
5148
5157
|
"group-default-role-manage",
|
|
5149
5158
|
"group-galleries-manage",
|
|
5150
5159
|
"group-instance-age-gated-create",
|
|
5160
|
+
"group-instance-announcement-create",
|
|
5161
|
+
"group-instance-bypass-avatar-performance",
|
|
5151
5162
|
"group-instance-calendar-link",
|
|
5152
5163
|
"group-instance-join",
|
|
5153
5164
|
"group-instance-manage",
|
|
@@ -5218,6 +5229,8 @@ Output schema:
|
|
|
5218
5229
|
"group-default-role-manage",
|
|
5219
5230
|
"group-galleries-manage",
|
|
5220
5231
|
"group-instance-age-gated-create",
|
|
5232
|
+
"group-instance-announcement-create",
|
|
5233
|
+
"group-instance-bypass-avatar-performance",
|
|
5221
5234
|
"group-instance-calendar-link",
|
|
5222
5235
|
"group-instance-join",
|
|
5223
5236
|
"group-instance-manage",
|
|
@@ -5724,7 +5737,7 @@ Output schema:
|
|
|
5724
5737
|
```
|
|
5725
5738
|
|
|
5726
5739
|
### vrchat_invite
|
|
5727
|
-
Invite yourself or one/many users to an instance. Users may be usr_ ids or exact display names.
|
|
5740
|
+
Invite yourself or one/many users to an instance. Users may be usr_ ids or exact display names. Destination is here=true, a full location like "wrld_:instance", or worldId+instanceId. A bare instanceId is not accepted: VRChat needs the worldId and rejects the stripped form. (write)
|
|
5728
5741
|
|
|
5729
5742
|
Input schema:
|
|
5730
5743
|
|
|
@@ -6026,10 +6039,16 @@ Input schema:
|
|
|
6026
6039
|
"userId": {
|
|
6027
6040
|
"type": "string"
|
|
6028
6041
|
},
|
|
6042
|
+
"worldId": {
|
|
6043
|
+
"description": "World of the target instance. Pair with instanceId.",
|
|
6044
|
+
"type": "string"
|
|
6045
|
+
},
|
|
6029
6046
|
"instanceId": {
|
|
6047
|
+
"description": "Instance to invite into. Pair with worldId, or pass the full \"wrld_:instance\" string here. VRChat rejects a bare instance ID on its own.",
|
|
6030
6048
|
"type": "string"
|
|
6031
6049
|
},
|
|
6032
6050
|
"location": {
|
|
6051
|
+
"description": "Full location string like \"wrld_:instance\". Simplest option when you have it.",
|
|
6033
6052
|
"type": "string"
|
|
6034
6053
|
},
|
|
6035
6054
|
"messageSlot": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basicbit/vrchat-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"mcpName": "io.github.BASIC-BIT/vrchat-mcp",
|
|
5
5
|
"description": "MCP server for VRChat friends, worlds, groups, events, notifications, and VRCX history.",
|
|
6
6
|
"type": "module",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"docs/evals.md",
|
|
21
21
|
"docs/privacy.md",
|
|
22
22
|
"docs/robust-notes.md",
|
|
23
|
+
"docs/spec-drift.md",
|
|
23
24
|
"docs/tools-guide.md",
|
|
24
25
|
"docs/tools.md",
|
|
25
26
|
"docs/vrcx.md",
|
package/server.json
CHANGED
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"source": "github",
|
|
9
9
|
"id": "1122295987"
|
|
10
10
|
},
|
|
11
|
-
"version": "0.1.
|
|
11
|
+
"version": "0.1.10",
|
|
12
12
|
"packages": [
|
|
13
13
|
{
|
|
14
14
|
"registryType": "npm",
|
|
15
15
|
"identifier": "@basicbit/vrchat-mcp",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.10",
|
|
17
17
|
"transport": {
|
|
18
18
|
"type": "stdio"
|
|
19
19
|
},
|