twitterapi-io-mcp 1.0.23 → 1.1.1
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/README.md +11 -11
- package/data/docs.json +630 -731
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# twitterapi-io-mcp
|
|
2
2
|
|
|
3
|
-
> Offline TwitterAPI.io documentation for Claude and AI assistants via MCP.
|
|
3
|
+
> Offline TwitterAPI.io documentation for Claude and AI assistants via MCP. 54 endpoints (with full method/params/body), 32 guides, 24 blog posts. No API key needed.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/twitterapi-io-mcp)
|
|
6
6
|
[](https://www.npmjs.com/package/twitterapi-io-mcp)
|
|
@@ -17,11 +17,11 @@ claude mcp add twitterapi-io -- npx -y twitterapi-io-mcp
|
|
|
17
17
|
|
|
18
18
|
An MCP server that gives Claude, Cursor, VS Code Copilot, and other AI assistants **instant, offline access** to [TwitterAPI.io](https://twitterapi.io) documentation.
|
|
19
19
|
|
|
20
|
-
- **
|
|
20
|
+
- **54 API endpoints** with full HTTP method, body/query parameters, cURL examples, and response schemas
|
|
21
21
|
- **32 guide pages** covering pricing, authentication, rate limits, webhooks, streaming
|
|
22
22
|
- **24 blog posts** with tutorials and use cases
|
|
23
23
|
- **All v2 write endpoints** documented with `login_cookies`, `proxy`, and body params
|
|
24
|
-
- **
|
|
24
|
+
- **All deprecated v1 endpoints removed** — only current v2 endpoints remain
|
|
25
25
|
- **Zero API key required** — everything is bundled locally
|
|
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.
|
|
@@ -34,7 +34,7 @@ Unlike other Twitter MCP servers that proxy live API calls (and need your API ke
|
|
|
34
34
|
### v1.0.22 Highlights
|
|
35
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
36
|
- Fresh rescrape from docs.twitterapi.io (Feb 21, 2026)
|
|
37
|
-
- All
|
|
37
|
+
- All 54 endpoints now match official llms.txt index
|
|
38
38
|
|
|
39
39
|
- Scraper auto-extracts method/body/params — `npm run scrape` keeps data fresh
|
|
40
40
|
|
|
@@ -182,19 +182,19 @@ Here are real prompts that work well with this MCP server:
|
|
|
182
182
|
- *"How do I upload media and create a tweet?"* — triggers sequential `get_twitterapi_endpoint` calls
|
|
183
183
|
|
|
184
184
|
<details>
|
|
185
|
-
<summary><strong>All
|
|
185
|
+
<summary><strong>All 54 endpoints by category</strong></summary>
|
|
186
186
|
|
|
187
187
|
| Category | Count | Endpoints |
|
|
188
188
|
|----------|-------|-----------|
|
|
189
|
-
| **User** | 12 | `get_user_by_username`, `get_user_followers`, `get_user_followings`, `
|
|
189
|
+
| **User** | 12 | `get_user_by_username`, `get_user_followers`, `get_user_followings`, `get_user_timeline`, and 8 more |
|
|
190
190
|
| **Tweet** | 8 | `tweet_advanced_search`, `get_tweet_by_ids`, `get_tweet_replies_v2`, `get_user_tweets`, and 4 more |
|
|
191
191
|
| **Community** | 9 | `create_community_v2`, `get_community_by_id`, `join_community_v2`, and 6 more |
|
|
192
192
|
| **Profile** | 3 | `update_avatar_v2`, `update_banner_v2`, `update_profile_v2` |
|
|
193
193
|
| **Webhook** | 4 | `add_webhook_rule`, `get_webhook_rules`, `update_webhook_rule`, `delete_webhook_rule` |
|
|
194
194
|
| **Stream** | 3 | `add_user_to_monitor_tweet`, `get_user_to_monitor_tweet`, `remove_user_from_monitor_tweet` |
|
|
195
|
-
| **Action** |
|
|
196
|
-
| **DM** |
|
|
197
|
-
| **List** |
|
|
195
|
+
| **Action** | 12 | `create_tweet_v2`, `like_tweet_v2`, `retweet_tweet_v2`, `upload_media_v2`, and 8 more |
|
|
196
|
+
| **DM** | 1 | `send_dm_v2` |
|
|
197
|
+
| **List** | 3 | `get_list_followers`, `get_list_members`, `list_timeline` |
|
|
198
198
|
| **Other** | 2 | `get_trends`, `get_space_detail` |
|
|
199
199
|
|
|
200
200
|
</details>
|
|
@@ -240,7 +240,7 @@ Restart your MCP client after adding the server config. Most clients (Claude Des
|
|
|
240
240
|
│ Claude / │ ◄──────────────────► │ twitterapi-io-mcp│
|
|
241
241
|
│ Cursor / │ │ │
|
|
242
242
|
│ VS Code │ │ Bundled docs │
|
|
243
|
-
└─────────────┘ │ (
|
|
243
|
+
└─────────────┘ │ (54 endpoints) │
|
|
244
244
|
└──────────────────┘
|
|
245
245
|
No network needed
|
|
246
246
|
```
|
|
@@ -275,7 +275,7 @@ npm run scrape # Update docs snapshot from twitterapi.io
|
|
|
275
275
|
|
|
276
276
|
## Not using MCP?
|
|
277
277
|
|
|
278
|
-
If your AI tool doesn't support MCP (like OpenClaw), use the **skill version** instead — a single markdown file with all
|
|
278
|
+
If your AI tool doesn't support MCP (like OpenClaw), use the **skill version** instead — a single markdown file with all 54 endpoints:
|
|
279
279
|
|
|
280
280
|
👉 **[twitterapi-io-skill](https://github.com/dorukardahan/twitterapi-io-skill)** — works with OpenClaw, Claude, GPT, Gemini, and any LLM.
|
|
281
281
|
|