twitterapi-io-mcp 1.0.22 → 1.0.23

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/README.md +10 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,11 +26,16 @@ An MCP server that gives Claude, Cursor, VS Code Copilot, and other AI assistant
26
26
 
27
27
  Unlike other Twitter MCP servers that proxy live API calls (and need your API key), this one ships a complete documentation snapshot. Your AI assistant reads it locally, instantly.
28
28
 
29
- ### v1.0.21 Highlights
30
- - **Security fix**: sanitized endpoint IDs to prevent path traversal in resource URIs
31
- - Fresh rescrape from docs.twitterapi.io (Feb 2026)
32
- - All 26 write endpoints have body parameters (login_cookies, tweet_text, proxy, etc.)
33
- - All 27 GET endpoints have query parameters
29
+ ### v1.0.23 Highlights
30
+ - **Platform advisory**: Twitter disabled `since:/until:` search operators and pagination (~Mar 5, 2026). Workarounds documented in `docs/platform-advisory-2026-03.md`.
31
+ - **Workaround**: Use `since_time:UNIX` / `until_time:UNIX` format instead (tested, working)
32
+ - **Webhook URL warning**: URL not auto-restored after API key rotation — must be manually re-set
33
+
34
+ ### v1.0.22 Highlights
35
+ - **7 new endpoints** (52 → 59 total): `get_space_detail`, `get_tweet_replies_v2`, `get_user_about`, `get_user_to_monitor_tweet`, `update_avatar_v2`, `update_banner_v2`, `update_profile_v2`
36
+ - Fresh rescrape from docs.twitterapi.io (Feb 21, 2026)
37
+ - All 59 endpoints now match official llms.txt index
38
+
34
39
  - Scraper auto-extracts method/body/params — `npm run scrape` keeps data fresh
35
40
 
36
41
  > **Disclaimer**: Independent community project. Not affiliated with TwitterAPI.io.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twitterapi-io-mcp",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
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",