twitterapi-io-mcp 1.3.0 → 1.3.2

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.
Files changed (2) hide show
  1. package/data/docs.json +148 -6
  2. package/package.json +1 -1
package/data/docs.json CHANGED
@@ -2253,7 +2253,33 @@
2253
2253
  "code_snippets": [
2254
2254
  "curl --request POST \\\n --url 'https://api.twitterapi.io/twitter/delete_community_v2' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
2255
2255
  ],
2256
- "raw_text": "Delete a community.You must set the login_cookie.You can get the login_cookie from /twitter/user_login_v2.Trial operation price: $0.003 per call. login_cookie: The login cookie of the user.You can get the login_cookie from /twitter/user_login_v2.Must be set community_id: The id of the community to join.Must be set community_name: The name of the community to delete.Must be set proxy: The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port . You can get proxy from: https://www.webshare.io/?referral_code=4e0q1n00a504"
2256
+ "raw_text": "Delete a community.You must set the login_cookie.You can get the login_cookie from /twitter/user_login_v2.Trial operation price: $0.003 per call. login_cookie: The login cookie of the user.You can get the login_cookie from /twitter/user_login_v2.Must be set community_id: The id of the community to join.Must be set community_name: The name of the community to delete.Must be set proxy: The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port . You can get proxy from: https://www.webshare.io/?referral_code=4e0q1n00a504",
2257
+ "parameters": [
2258
+ {
2259
+ "name": "login_cookies",
2260
+ "type": "string",
2261
+ "required": true,
2262
+ "description": "Base64 encoded login cookies from /twitter/user_login_v2"
2263
+ },
2264
+ {
2265
+ "name": "community_id",
2266
+ "type": "string",
2267
+ "required": true,
2268
+ "description": "The community ID to delete"
2269
+ },
2270
+ {
2271
+ "name": "community_name",
2272
+ "type": "string",
2273
+ "required": true,
2274
+ "description": "The community name"
2275
+ },
2276
+ {
2277
+ "name": "proxy",
2278
+ "type": "string",
2279
+ "required": true,
2280
+ "description": "Residential proxy URL"
2281
+ }
2282
+ ]
2257
2283
  },
2258
2284
  "join_community_v2": {
2259
2285
  "name": "join_community_v2",
@@ -2682,7 +2708,35 @@
2682
2708
  "code_snippets": [
2683
2709
  "curl --request POST \\\n --url 'https://api.twitterapi.io/oapi/tweet_filter/update_rule' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
2684
2710
  ],
2685
- "raw_text": "Update a tweet filter rule. You must set all parameters. rule_id: ID of the rule to update.Must be set tag: Custom tag to identify the rule.Must be set.Max length is 255 value: Rule to filter tweets.eg \"from:elonmusk OR from:kaitoeasyapi\".Must be set.Max length is 255 interval_seconds: Interval to check tweets.Must be set.Min value is 0.1.Max value is 86400 () is_effect: Whether the rule is effective.Must be set.1 means effective, 0 means not effective.Default value is 0"
2711
+ "raw_text": "Update a tweet filter rule. You must set all parameters. rule_id: ID of the rule to update.Must be set tag: Custom tag to identify the rule.Must be set.Max length is 255 value: Rule to filter tweets.eg \"from:elonmusk OR from:kaitoeasyapi\".Must be set.Max length is 255 interval_seconds: Interval to check tweets.Must be set.Min value is 0.1.Max value is 86400 () is_effect: Whether the rule is effective.Must be set.1 means effective, 0 means not effective.Default value is 0",
2712
+ "parameters": [
2713
+ {
2714
+ "name": "rule_id",
2715
+ "type": "string",
2716
+ "required": true
2717
+ },
2718
+ {
2719
+ "name": "tag",
2720
+ "type": "string",
2721
+ "required": true
2722
+ },
2723
+ {
2724
+ "name": "value",
2725
+ "type": "string",
2726
+ "required": true
2727
+ },
2728
+ {
2729
+ "name": "interval_seconds",
2730
+ "type": "number",
2731
+ "required": true
2732
+ },
2733
+ {
2734
+ "name": "is_effect",
2735
+ "type": "integer",
2736
+ "required": false,
2737
+ "description": "0=inactive, 1=active"
2738
+ }
2739
+ ]
2686
2740
  },
2687
2741
  "delete_webhook_rule": {
2688
2742
  "name": "delete_webhook_rule",
@@ -2724,7 +2778,14 @@
2724
2778
  "code_snippets": [
2725
2779
  "curl --request DELETE \\\n --url 'https://api.twitterapi.io/oapi/tweet_filter/delete_rule' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
2726
2780
  ],
2727
- "raw_text": "Delete a tweet filter rule. You must set all parameters. rule_id: ID of the rule to delete.Must be set"
2781
+ "raw_text": "Delete a tweet filter rule. You must set all parameters. rule_id: ID of the rule to delete.Must be set",
2782
+ "parameters": [
2783
+ {
2784
+ "name": "rule_id",
2785
+ "type": "string",
2786
+ "required": false
2787
+ }
2788
+ ]
2728
2789
  },
2729
2790
  "get_community_by_id": {
2730
2791
  "name": "get_community_by_id",
@@ -3128,7 +3189,28 @@
3128
3189
  "code_snippets": [
3129
3190
  "curl --request PATCH \\\n --url 'https://api.twitterapi.io/twitter/update_avatar_v2' \\\n --header 'X-API-Key: <api-key>'"
3130
3191
  ],
3131
- "raw_text": "Update your Twitter avatar/profile picture. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call."
3192
+ "raw_text": "Update your Twitter avatar/profile picture. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call.",
3193
+ "contentType": "multipart/form-data",
3194
+ "parameters": [
3195
+ {
3196
+ "name": "file",
3197
+ "type": "binary",
3198
+ "required": true,
3199
+ "description": "The avatar image file to upload. Recommended size: 400x400 pixels. Maximum file size: 700KB. Supported formats: JPG, PNG"
3200
+ },
3201
+ {
3202
+ "name": "login_cookies",
3203
+ "type": "string",
3204
+ "required": true,
3205
+ "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3206
+ },
3207
+ {
3208
+ "name": "proxy",
3209
+ "type": "string",
3210
+ "required": true,
3211
+ "description": "Residential proxy URL. Example: http://username:password@ip:port"
3212
+ }
3213
+ ]
3132
3214
  },
3133
3215
  "update_banner_v2": {
3134
3216
  "name": "update_banner_v2",
@@ -3152,7 +3234,28 @@
3152
3234
  "code_snippets": [
3153
3235
  "curl --request PATCH \\\n --url 'https://api.twitterapi.io/twitter/update_banner_v2' \\\n --header 'X-API-Key: <api-key>'"
3154
3236
  ],
3155
- "raw_text": "Update your Twitter banner/header image. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call."
3237
+ "raw_text": "Update your Twitter banner/header image. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call.",
3238
+ "contentType": "multipart/form-data",
3239
+ "parameters": [
3240
+ {
3241
+ "name": "file",
3242
+ "type": "binary",
3243
+ "required": true,
3244
+ "description": "The banner image file to upload. Recommended size: 1500x500 pixels. Maximum file size: 2MB. Supported formats: JPG, PNG"
3245
+ },
3246
+ {
3247
+ "name": "login_cookies",
3248
+ "type": "string",
3249
+ "required": true,
3250
+ "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3251
+ },
3252
+ {
3253
+ "name": "proxy",
3254
+ "type": "string",
3255
+ "required": true,
3256
+ "description": "Residential proxy URL. Example: http://username:password@ip:port"
3257
+ }
3258
+ ]
3156
3259
  },
3157
3260
  "update_profile_v2": {
3158
3261
  "name": "update_profile_v2",
@@ -3240,7 +3343,46 @@
3240
3343
  "code_snippets": [
3241
3344
  "curl --request PATCH \\\n --url 'https://api.twitterapi.io/twitter/update_profile_v2' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
3242
3345
  ],
3243
- "raw_text": "Update your Twitter profile information. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call. login_cookies: Base64 encoded login cookies of the user. You can get the login_cookie from /twitter/user_login_v2. Required proxy: The proxy to use. Please use high-quality residential proxies and avoid free proxies. Required. Example: http://username:password@ip:port name: Display name (maximum 50 characters) description: Bio/description (maximum 160 characters) location: Location (maximum 30 characters) url: Website URL"
3346
+ "raw_text": "Update your Twitter profile information. You must set the login_cookie. You can get the login_cookie from /twitter/user_login_v2. Trial operation price: $0.003 per call. login_cookies: Base64 encoded login cookies of the user. You can get the login_cookie from /twitter/user_login_v2. Required proxy: The proxy to use. Please use high-quality residential proxies and avoid free proxies. Required. Example: http://username:password@ip:port name: Display name (maximum 50 characters) description: Bio/description (maximum 160 characters) location: Location (maximum 30 characters) url: Website URL",
3347
+ "parameters": [
3348
+ {
3349
+ "name": "login_cookies",
3350
+ "type": "string",
3351
+ "required": true,
3352
+ "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3353
+ },
3354
+ {
3355
+ "name": "proxy",
3356
+ "type": "string",
3357
+ "required": true,
3358
+ "description": "Residential proxy URL"
3359
+ },
3360
+ {
3361
+ "name": "name",
3362
+ "type": "string",
3363
+ "required": false,
3364
+ "description": "Display name (maximum 50 characters)"
3365
+ },
3366
+ {
3367
+ "name": "description",
3368
+ "type": "string",
3369
+ "required": false,
3370
+ "description": "Bio/description (maximum 160 characters)"
3371
+ },
3372
+ {
3373
+ "name": "location",
3374
+ "type": "string",
3375
+ "required": false,
3376
+ "description": "Location (maximum 30 characters)"
3377
+ },
3378
+ {
3379
+ "name": "url",
3380
+ "type": "string",
3381
+ "required": false,
3382
+ "description": "Website URL"
3383
+ }
3384
+ ],
3385
+ "known_issues": "Backend bug as of 2026-03-17: returns 'output.buffer.transfer is not a function' for all requests. Server-side Node.js issue."
3244
3386
  },
3245
3387
  "get_dm_history": {
3246
3388
  "name": "get_dm_history",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twitterapi-io-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "mcpName": "io.github.dorukardahan/twitterapi-io-mcp",
5
5
  "description": "TwitterAPI.io MCP server providing offline access to docs (endpoints, pages, blogs) for Claude and other AI assistants",
6
6
  "main": "index.js",