twitterapi-io-mcp 1.2.0 → 1.3.0
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 +8 -7
- package/data/docs.json +810 -545
- package/package.json +1 -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. 58 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,7 +17,7 @@ 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
|
+
- **58 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
|
|
@@ -27,6 +27,7 @@ An MCP server that gives Claude, Cursor, VS Code Copilot, and other AI assistant
|
|
|
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
29
|
### Recent Changes
|
|
30
|
+
- **v1.2.0**: OpenAPI-first scraper rewrite — structured parameters with types, response schemas, eliminates Vercel checkpoint issues
|
|
30
31
|
- **v1.1.x**: Added `list_timeline` + `get_user_timeline`, removed 7 deprecated V1 endpoints, security fixes (hono, ajv, express-rate-limit)
|
|
31
32
|
- **v1.0.23**: Platform advisory — Twitter disabled `since:/until:` search operators. Use `since_time:UNIX` / `until_time:UNIX` instead
|
|
32
33
|
- **v1.0.22**: Added 7 endpoints (`get_space_detail`, `get_tweet_replies_v2`, `get_user_about`, etc.)
|
|
@@ -177,7 +178,7 @@ Here are real prompts that work well with this MCP server:
|
|
|
177
178
|
- *"How do I upload media and create a tweet?"* — triggers sequential `get_twitterapi_endpoint` calls
|
|
178
179
|
|
|
179
180
|
<details>
|
|
180
|
-
<summary><strong>All
|
|
181
|
+
<summary><strong>All 58 endpoints by category</strong></summary>
|
|
181
182
|
|
|
182
183
|
| Category | Count | Endpoints |
|
|
183
184
|
|----------|-------|-----------|
|
|
@@ -185,12 +186,12 @@ Here are real prompts that work well with this MCP server:
|
|
|
185
186
|
| **Tweet** | 8 | `tweet_advanced_search`, `get_tweet_by_ids`, `get_tweet_reply`, `get_tweet_replies_v2`, `get_tweet_quote`, `get_tweet_retweeter`, `get_tweet_thread_context`, `get_article` |
|
|
186
187
|
| **Action** | 8 | `create_tweet_v2`, `delete_tweet_v2`, `like_tweet_v2`, `unlike_tweet_v2`, `retweet_tweet_v2`, `follow_user_v2`, `unfollow_user_v2`, `upload_media_v2` |
|
|
187
188
|
| **Community** | 9 | `get_community_by_id`, `get_community_members`, `get_community_moderators`, `get_community_tweets`, `get_all_community_tweets`, `create_community_v2`, `delete_community_v2`, `join_community_v2`, `leave_community_v2` |
|
|
188
|
-
| **List** |
|
|
189
|
+
| **List** | 6 | `get_list_followers`, `get_list_members`, `get_list_tweets`, `list_timeline`, `add_list_member`, `remove_list_member` |
|
|
189
190
|
| **Profile** | 3 | `update_avatar_v2`, `update_banner_v2`, `update_profile_v2` |
|
|
190
191
|
| **Webhook** | 4 | `add_webhook_rule`, `get_webhook_rules`, `update_webhook_rule`, `delete_webhook_rule` |
|
|
191
192
|
| **Stream** | 3 | `add_user_to_monitor_tweet`, `get_user_to_monitor_tweet`, `remove_user_to_monitor_tweet` |
|
|
192
193
|
| **Auth** | 1 | `user_login_v2` |
|
|
193
|
-
| **DM** |
|
|
194
|
+
| **DM** | 2 | `get_dm_history`, `send_dm_v2` |
|
|
194
195
|
| **Account** | 1 | `get_my_info` |
|
|
195
196
|
| **Other** | 2 | `get_trends`, `get_space_detail` |
|
|
196
197
|
|
|
@@ -237,7 +238,7 @@ Restart your MCP client after adding the server config. Most clients (Claude Des
|
|
|
237
238
|
│ Claude / │ ◄──────────────────► │ twitterapi-io-mcp│
|
|
238
239
|
│ Cursor / │ │ │
|
|
239
240
|
│ VS Code │ │ Bundled docs │
|
|
240
|
-
└─────────────┘ │ (
|
|
241
|
+
└─────────────┘ │ (58 endpoints) │
|
|
241
242
|
└──────────────────┘
|
|
242
243
|
No network needed
|
|
243
244
|
```
|
|
@@ -272,7 +273,7 @@ npm run scrape # Update docs snapshot from twitterapi.io
|
|
|
272
273
|
|
|
273
274
|
## Not using MCP?
|
|
274
275
|
|
|
275
|
-
If your AI tool doesn't support MCP (like OpenClaw), use the **skill version** instead — a single markdown file with all
|
|
276
|
+
If your AI tool doesn't support MCP (like OpenClaw), use the **skill version** instead — a single markdown file with all 58 endpoints:
|
|
276
277
|
|
|
277
278
|
👉 **[twitterapi-io-skill](https://github.com/dorukardahan/twitterapi-io-skill)** — works with OpenClaw, Claude, GPT, Gemini, and any LLM.
|
|
278
279
|
|