twitterapi-io-mcp 1.5.8 → 1.5.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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## [1.5.10](https://github.com/dorukardahan/twitterapi-io-mcp/compare/v1.5.9...v1.5.10) (2026-04-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * sync body parameter placement with live OpenAPI ([8f45a44](https://github.com/dorukardahan/twitterapi-io-mcp/commit/8f45a44905e094b21e51f01b64f9e1ce1a538e07))
7
+
8
+ ## [1.5.9](https://github.com/dorukardahan/twitterapi-io-mcp/compare/v1.5.8...v1.5.9) (2026-04-25)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * sync live OpenAPI write params ([4a9f8b4](https://github.com/dorukardahan/twitterapi-io-mcp/commit/4a9f8b4ef02c69e964634d780dae52a77a656a27))
14
+
1
15
  ## [1.5.8](https://github.com/dorukardahan/twitterapi-io-mcp/compare/v1.5.7...v1.5.8) (2026-04-21)
2
16
 
3
17
 
@@ -9,7 +23,9 @@
9
23
 
10
24
  ### Bug Fixes
11
25
 
12
- * align community v2 auth fields with live OpenAPI (`login_cookies`), mark upload_media_v2 as multipart/form-data, and refresh lockfile via `npm audit fix --package-lock-only`
26
+ * sync `create_tweet_v2`, `send_dm_to_user`, and `upload_image` request params with the live OpenAPI
27
+ * sync body/query placement for `delete_rule`, `update_rule`, `delete_community_v2`, `update_avatar_v2`, `update_banner_v2`, `update_profile_v2`, and `upload_media_v2`
28
+ * add `npm audit --audit-level=high` back to `prepublishOnly` and pin transitive `npm` to 11.13.0 via `overrides`
13
29
 
14
30
  ## [1.5.7](https://github.com/dorukardahan/twitterapi-io-mcp/compare/v1.5.6...v1.5.7) (2026-04-19)
15
31
 
package/data/docs.json CHANGED
@@ -1577,7 +1577,17 @@
1577
1577
  "media_ids": {
1578
1578
  "type": "array",
1579
1579
  "required": false,
1580
- "description": "The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed)"
1580
+ "description": "List of media IDs (strings) to attach. Optional. Obtain each from /twitter/upload_media_v2."
1581
+ },
1582
+ "quote_tweet_id": {
1583
+ "type": "string",
1584
+ "required": false,
1585
+ "description": "ID of a tweet to quote. Optional. Alternative to attachment_url."
1586
+ },
1587
+ "schedule_for": {
1588
+ "type": "string",
1589
+ "required": false,
1590
+ "description": "Schedule the tweet to be sent at a future time. Optional. Format: ISO-8601 with milliseconds, e.g. 2026-01-20T10:00:00.000Z"
1581
1591
  },
1582
1592
  "proxy": {
1583
1593
  "type": "string",
@@ -1619,7 +1629,17 @@
1619
1629
  "media_ids": {
1620
1630
  "type": "array",
1621
1631
  "required": false,
1622
- "description": "The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed)"
1632
+ "description": "List of media IDs (strings) to attach. Optional. Obtain each from /twitter/upload_media_v2."
1633
+ },
1634
+ "quote_tweet_id": {
1635
+ "type": "string",
1636
+ "required": false,
1637
+ "description": "ID of a tweet to quote. Optional. Alternative to attachment_url."
1638
+ },
1639
+ "schedule_for": {
1640
+ "type": "string",
1641
+ "required": false,
1642
+ "description": "Schedule the tweet to be sent at a future time. Optional. Format: ISO-8601 with milliseconds, e.g. 2026-01-20T10:00:00.000Z"
1623
1643
  },
1624
1644
  "proxy": {
1625
1645
  "type": "string",
@@ -1645,7 +1665,89 @@
1645
1665
  "code_snippets": [
1646
1666
  "curl --request POST \\\n --url 'https://api.twitterapi.io/twitter/create_tweet_v2' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
1647
1667
  ],
1648
- "raw_text": "Create a tweet.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: The login cookies of the user.You can get the login_cookie from /twitter/user_login_v2.Must be set tweet_text: The text of the tweet.Must be set reply_to_tweet_id: The id of the tweet to reply to.Optional attachment_url: The url of quote tweet.Optional.eg.https://x.com/sama/status/1947640330318156074 community_id: The id of the community to post to.Optional is_note_tweet: If this option is set to True, tweets longer than 280 characters can be posted (Twitter Premium only). media_ids: The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed) 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"
1668
+ "raw_text": "Create a tweet.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: The login cookies of the user.You can get the login_cookie from /twitter/user_login_v2.Must be set tweet_text: The text of the tweet.Must be set reply_to_tweet_id: The id of the tweet to reply to.Optional attachment_url: The url of quote tweet.Optional.eg.https://x.com/sama/status/1947640330318156074 community_id: The id of the community to post to.Optional is_note_tweet: If this option is set to True, tweets longer than 280 characters can be posted (Twitter Premium only). media_ids: The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed) 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",
1669
+ "parameters": [
1670
+ {
1671
+ "name": "login_cookies",
1672
+ "in": "body",
1673
+ "type": "string",
1674
+ "format": null,
1675
+ "required": true,
1676
+ "description": "The login cookies of the user.You can get the login_cookie from /twitter/user_login_v2.Must be set"
1677
+ },
1678
+ {
1679
+ "name": "tweet_text",
1680
+ "in": "body",
1681
+ "type": "string",
1682
+ "format": null,
1683
+ "required": true,
1684
+ "description": "The text of the tweet.Must be set"
1685
+ },
1686
+ {
1687
+ "name": "reply_to_tweet_id",
1688
+ "in": "body",
1689
+ "type": "string",
1690
+ "format": null,
1691
+ "required": false,
1692
+ "description": "The id of the tweet to reply to.Optional"
1693
+ },
1694
+ {
1695
+ "name": "attachment_url",
1696
+ "in": "body",
1697
+ "type": "string",
1698
+ "format": null,
1699
+ "required": false,
1700
+ "description": "The url of quote tweet.Optional.eg.https://x.com/sama/status/1947640330318156074"
1701
+ },
1702
+ {
1703
+ "name": "community_id",
1704
+ "in": "body",
1705
+ "type": "string",
1706
+ "format": null,
1707
+ "required": false,
1708
+ "description": "The id of the community to post to.Optional"
1709
+ },
1710
+ {
1711
+ "name": "is_note_tweet",
1712
+ "in": "body",
1713
+ "type": "boolean",
1714
+ "format": null,
1715
+ "required": false,
1716
+ "description": "If this option is set to True, tweets longer than 280 characters can be posted (Twitter Premium only)."
1717
+ },
1718
+ {
1719
+ "name": "media_ids",
1720
+ "in": "body",
1721
+ "type": "array",
1722
+ "format": null,
1723
+ "required": false,
1724
+ "description": "List of media IDs (strings) to attach. Optional. Obtain each from /twitter/upload_media_v2."
1725
+ },
1726
+ {
1727
+ "name": "quote_tweet_id",
1728
+ "in": "body",
1729
+ "type": "string",
1730
+ "format": null,
1731
+ "required": false,
1732
+ "description": "ID of a tweet to quote. Optional. Alternative to attachment_url."
1733
+ },
1734
+ {
1735
+ "name": "schedule_for",
1736
+ "in": "body",
1737
+ "type": "string",
1738
+ "format": null,
1739
+ "required": false,
1740
+ "description": "Schedule the tweet to be sent at a future time. Optional. Format: ISO-8601 with milliseconds, e.g. 2026-01-20T10:00:00.000Z"
1741
+ },
1742
+ {
1743
+ "name": "proxy",
1744
+ "in": "body",
1745
+ "type": "string",
1746
+ "format": null,
1747
+ "required": true,
1748
+ "description": "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"
1749
+ }
1750
+ ]
1649
1751
  },
1650
1752
  "upload_media_v2": {
1651
1753
  "name": "upload_media_v2",
@@ -1721,24 +1823,28 @@
1721
1823
  "contentType": "multipart/form-data",
1722
1824
  "parameters": [
1723
1825
  {
1826
+ "in": "body",
1724
1827
  "name": "file",
1725
1828
  "type": "binary",
1726
1829
  "required": true,
1727
1830
  "description": "The media file to upload (image/video). Use multipart/form-data."
1728
1831
  },
1729
1832
  {
1833
+ "in": "body",
1730
1834
  "name": "login_cookies",
1731
1835
  "type": "string",
1732
1836
  "required": true,
1733
1837
  "description": "The login cookies from /twitter/user_login_v2"
1734
1838
  },
1735
1839
  {
1840
+ "in": "body",
1736
1841
  "name": "proxy",
1737
1842
  "type": "string",
1738
1843
  "required": true,
1739
1844
  "description": "Residential proxy URL. Example: http://username:password@ip:port"
1740
1845
  },
1741
1846
  {
1847
+ "in": "body",
1742
1848
  "name": "is_long_video",
1743
1849
  "type": "boolean",
1744
1850
  "required": false,
@@ -2118,10 +2224,10 @@
2118
2224
  "required": true,
2119
2225
  "description": "The text of the direct message.Must be set"
2120
2226
  },
2121
- "media_ids": {
2122
- "type": "array",
2227
+ "media_id": {
2228
+ "type": "string",
2123
2229
  "required": false,
2124
- "description": "The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed)"
2230
+ "description": "ID of a single media asset to attach. Optional. Obtain from /twitter/upload_media_v2."
2125
2231
  },
2126
2232
  "proxy": {
2127
2233
  "type": "string",
@@ -2150,10 +2256,10 @@
2150
2256
  "required": true,
2151
2257
  "description": "The text of the direct message.Must be set"
2152
2258
  },
2153
- "media_ids": {
2154
- "type": "array",
2259
+ "media_id": {
2260
+ "type": "string",
2155
2261
  "required": false,
2156
- "description": "The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed)"
2262
+ "description": "ID of a single media asset to attach. Optional. Obtain from /twitter/upload_media_v2."
2157
2263
  },
2158
2264
  "proxy": {
2159
2265
  "type": "string",
@@ -2184,7 +2290,57 @@
2184
2290
  "code_snippets": [
2185
2291
  "curl --request POST \\\n --url 'https://api.twitterapi.io/twitter/send_dm_to_user' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
2186
2292
  ],
2187
- "raw_text": "Send a direct message to a user.You must set the login_cookie..You can get the login_cookie from /twitter/user_login_v2.You can only send DMs to those who have enabled DMs. Sometimes it may fail, so be prepared to retry.Trial operation price: $0.003 per call. login_cookies: The login cookie of the user.You can get the login_cookies from /twitter/user_login_v2.Must be set user_id: The id of the user to send the direct message to.Must be set text: The text of the direct message.Must be set media_ids: The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed) 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 reply_to_message_id: The id of the message to reply to.Optional"
2293
+ "raw_text": "Send a direct message to a user.You must set the login_cookie..You can get the login_cookie from /twitter/user_login_v2.You can only send DMs to those who have enabled DMs. Sometimes it may fail, so be prepared to retry.Trial operation price: $0.003 per call. login_cookies: The login cookie of the user.You can get the login_cookies from /twitter/user_login_v2.Must be set user_id: The id of the user to send the direct message to.Must be set text: The text of the direct message.Must be set media_ids: The ids of the media to post.Optional.You can get the media_ids from /twitter/upload_image_v2 (to be developed) 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 reply_to_message_id: The id of the message to reply to.Optional",
2294
+ "parameters": [
2295
+ {
2296
+ "name": "login_cookies",
2297
+ "in": "body",
2298
+ "type": "string",
2299
+ "format": null,
2300
+ "required": true,
2301
+ "description": "The login cookie of the user.You can get the login_cookies from /twitter/user_login_v2.Must be set"
2302
+ },
2303
+ {
2304
+ "name": "user_id",
2305
+ "in": "body",
2306
+ "type": "string",
2307
+ "format": null,
2308
+ "required": true,
2309
+ "description": "The id of the user to send the direct message to.Must be set"
2310
+ },
2311
+ {
2312
+ "name": "text",
2313
+ "in": "body",
2314
+ "type": "string",
2315
+ "format": null,
2316
+ "required": true,
2317
+ "description": "The text of the direct message.Must be set"
2318
+ },
2319
+ {
2320
+ "name": "media_id",
2321
+ "in": "body",
2322
+ "type": "string",
2323
+ "format": null,
2324
+ "required": false,
2325
+ "description": "ID of a single media asset to attach. Optional. Obtain from /twitter/upload_media_v2."
2326
+ },
2327
+ {
2328
+ "name": "proxy",
2329
+ "in": "body",
2330
+ "type": "string",
2331
+ "format": null,
2332
+ "required": true,
2333
+ "description": "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"
2334
+ },
2335
+ {
2336
+ "name": "reply_to_message_id",
2337
+ "in": "body",
2338
+ "type": "string",
2339
+ "format": null,
2340
+ "required": false,
2341
+ "description": "The id of the message to reply to.Optional"
2342
+ }
2343
+ ]
2188
2344
  },
2189
2345
  "create_community_v2": {
2190
2346
  "name": "create_community_v2",
@@ -2327,24 +2483,28 @@
2327
2483
  "raw_text": "Delete a community.You must set the login_cookies.You can get the login_cookies from /twitter/user_login_v2.Trial operation price: $0.003 per call. login_cookies: The login cookie of the user.You can get the login_cookies 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",
2328
2484
  "parameters": [
2329
2485
  {
2486
+ "in": "body",
2330
2487
  "name": "login_cookies",
2331
2488
  "type": "string",
2332
2489
  "required": true,
2333
2490
  "description": "Base64 encoded login cookies from /twitter/user_login_v2"
2334
2491
  },
2335
2492
  {
2493
+ "in": "body",
2336
2494
  "name": "community_id",
2337
2495
  "type": "string",
2338
2496
  "required": true,
2339
2497
  "description": "The community ID to delete"
2340
2498
  },
2341
2499
  {
2500
+ "in": "body",
2342
2501
  "name": "community_name",
2343
2502
  "type": "string",
2344
2503
  "required": true,
2345
2504
  "description": "The community name"
2346
2505
  },
2347
2506
  {
2507
+ "in": "body",
2348
2508
  "name": "proxy",
2349
2509
  "type": "string",
2350
2510
  "required": true,
@@ -2784,26 +2944,31 @@
2784
2944
  "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",
2785
2945
  "parameters": [
2786
2946
  {
2947
+ "in": "body",
2787
2948
  "name": "rule_id",
2788
2949
  "type": "string",
2789
2950
  "required": true
2790
2951
  },
2791
2952
  {
2953
+ "in": "body",
2792
2954
  "name": "tag",
2793
2955
  "type": "string",
2794
2956
  "required": true
2795
2957
  },
2796
2958
  {
2959
+ "in": "body",
2797
2960
  "name": "value",
2798
2961
  "type": "string",
2799
2962
  "required": true
2800
2963
  },
2801
2964
  {
2965
+ "in": "body",
2802
2966
  "name": "interval_seconds",
2803
2967
  "type": "number",
2804
2968
  "required": true
2805
2969
  },
2806
2970
  {
2971
+ "in": "body",
2807
2972
  "name": "is_effect",
2808
2973
  "type": "integer",
2809
2974
  "required": false,
@@ -2854,6 +3019,7 @@
2854
3019
  "raw_text": "Delete a tweet filter rule. You must set all parameters. rule_id: ID of the rule to delete.Must be set",
2855
3020
  "parameters": [
2856
3021
  {
3022
+ "in": "body",
2857
3023
  "name": "rule_id",
2858
3024
  "type": "string",
2859
3025
  "required": false
@@ -3267,18 +3433,21 @@
3267
3433
  "contentType": "multipart/form-data",
3268
3434
  "parameters": [
3269
3435
  {
3436
+ "in": "body",
3270
3437
  "name": "file",
3271
3438
  "type": "binary",
3272
3439
  "required": true,
3273
3440
  "description": "The avatar image file to upload. Recommended size: 400x400 pixels. Maximum file size: 700KB. Supported formats: JPG, PNG"
3274
3441
  },
3275
3442
  {
3443
+ "in": "body",
3276
3444
  "name": "login_cookies",
3277
3445
  "type": "string",
3278
3446
  "required": true,
3279
3447
  "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3280
3448
  },
3281
3449
  {
3450
+ "in": "body",
3282
3451
  "name": "proxy",
3283
3452
  "type": "string",
3284
3453
  "required": true,
@@ -3312,18 +3481,21 @@
3312
3481
  "contentType": "multipart/form-data",
3313
3482
  "parameters": [
3314
3483
  {
3484
+ "in": "body",
3315
3485
  "name": "file",
3316
3486
  "type": "binary",
3317
3487
  "required": true,
3318
3488
  "description": "The banner image file to upload. Recommended size: 1500x500 pixels. Maximum file size: 2MB. Supported formats: JPG, PNG"
3319
3489
  },
3320
3490
  {
3491
+ "in": "body",
3321
3492
  "name": "login_cookies",
3322
3493
  "type": "string",
3323
3494
  "required": true,
3324
3495
  "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3325
3496
  },
3326
3497
  {
3498
+ "in": "body",
3327
3499
  "name": "proxy",
3328
3500
  "type": "string",
3329
3501
  "required": true,
@@ -3420,36 +3592,42 @@
3420
3592
  "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",
3421
3593
  "parameters": [
3422
3594
  {
3595
+ "in": "body",
3423
3596
  "name": "login_cookies",
3424
3597
  "type": "string",
3425
3598
  "required": true,
3426
3599
  "description": "Base64 encoded login cookies from /twitter/user_login_v2"
3427
3600
  },
3428
3601
  {
3602
+ "in": "body",
3429
3603
  "name": "proxy",
3430
3604
  "type": "string",
3431
3605
  "required": true,
3432
3606
  "description": "Residential proxy URL"
3433
3607
  },
3434
3608
  {
3609
+ "in": "body",
3435
3610
  "name": "name",
3436
3611
  "type": "string",
3437
3612
  "required": false,
3438
3613
  "description": "Display name (maximum 50 characters)"
3439
3614
  },
3440
3615
  {
3616
+ "in": "body",
3441
3617
  "name": "description",
3442
3618
  "type": "string",
3443
3619
  "required": false,
3444
3620
  "description": "Bio/description (maximum 160 characters)"
3445
3621
  },
3446
3622
  {
3623
+ "in": "body",
3447
3624
  "name": "location",
3448
3625
  "type": "string",
3449
3626
  "required": false,
3450
3627
  "description": "Location (maximum 30 characters)"
3451
3628
  },
3452
3629
  {
3630
+ "in": "body",
3453
3631
  "name": "url",
3454
3632
  "type": "string",
3455
3633
  "required": false,
@@ -4120,7 +4298,7 @@
4120
4298
  "name": "auth_session",
4121
4299
  "in": "body",
4122
4300
  "type": "string",
4123
- "format": "string",
4301
+ "format": null,
4124
4302
  "required": true,
4125
4303
  "description": "The session of the login. It's returned by /twitter/login_by_2fa"
4126
4304
  },
@@ -4128,15 +4306,15 @@
4128
4306
  "name": "image_url",
4129
4307
  "in": "body",
4130
4308
  "type": "string",
4131
- "format": "string",
4132
- "required": false,
4309
+ "format": null,
4310
+ "required": true,
4133
4311
  "description": "The url of the image to upload"
4134
4312
  },
4135
4313
  {
4136
4314
  "name": "proxy",
4137
4315
  "in": "body",
4138
4316
  "type": "string",
4139
- "format": "string",
4317
+ "format": null,
4140
4318
  "required": true,
4141
4319
  "description": "The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port"
4142
4320
  }
@@ -4147,7 +4325,41 @@
4147
4325
  "code_snippets": [
4148
4326
  "curl --request POST \\\n --url 'https://api.twitterapi.io/twitter/upload_image' \\\n --header 'X-API-Key: <api-key>' \\\n --header 'Content-Type: application/json'"
4149
4327
  ],
4150
- "raw_text": "upload image to twitter.Need to login first. Trial operation price: $0.001 per call. auth_session: The session of the login. It's returned by /twitter/login_by_2fa image_url: The url of the image to upload proxy: The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port"
4328
+ "raw_text": "upload image to twitter.Need to login first. Trial operation price: $0.001 per call. auth_session: The session of the login. It's returned by /twitter/login_by_2fa image_url: The url of the image to upload proxy: The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port",
4329
+ "body": {
4330
+ "auth_session": {
4331
+ "type": "string",
4332
+ "required": true,
4333
+ "description": "The session of the login. It's returned by /twitter/login_by_2fa"
4334
+ },
4335
+ "image_url": {
4336
+ "type": "string",
4337
+ "required": true,
4338
+ "description": "The url of the image to upload"
4339
+ },
4340
+ "proxy": {
4341
+ "type": "string",
4342
+ "required": true,
4343
+ "description": "The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port"
4344
+ }
4345
+ },
4346
+ "body_parameters": {
4347
+ "auth_session": {
4348
+ "type": "string",
4349
+ "required": true,
4350
+ "description": "The session of the login. It's returned by /twitter/login_by_2fa"
4351
+ },
4352
+ "image_url": {
4353
+ "type": "string",
4354
+ "required": true,
4355
+ "description": "The url of the image to upload"
4356
+ },
4357
+ "proxy": {
4358
+ "type": "string",
4359
+ "required": true,
4360
+ "description": "The proxy to use.Please use high-quality residential proxies and avoid free proxies.Required.Example: http://username:password@ip:port"
4361
+ }
4362
+ }
4151
4363
  },
4152
4364
  "create_tweet": {
4153
4365
  "name": "create_tweet",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twitterapi-io-mcp",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
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",
@@ -14,7 +14,7 @@
14
14
  "build": "echo 'No build step required - pure ES Module'",
15
15
  "scrape": "node scrape-all.cjs",
16
16
  "generate:docs": "node generate-context7-docs.cjs",
17
- "prepublishOnly": "npm test"
17
+ "prepublishOnly": "npm audit --audit-level=high && npm test"
18
18
  },
19
19
  "keywords": [
20
20
  "mcp",
@@ -71,5 +71,8 @@
71
71
  "@semantic-release/exec": "^7.1.0",
72
72
  "@semantic-release/git": "^10.0.1",
73
73
  "semantic-release": "^25.0.3"
74
+ },
75
+ "overrides": {
76
+ "npm": "11.13.0"
74
77
  }
75
78
  }