twitterapi-io-mcp 1.0.19 → 1.0.20

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 +21 -6
  2. 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. 59 endpoints, 19 guides, 21 blog posts. No API key needed.
3
+ > Offline TwitterAPI.io documentation for Claude and AI assistants via MCP. 56 endpoints (with full method/params/body), 32 guides, 24 blog posts. No API key needed.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/twitterapi-io-mcp.svg)](https://www.npmjs.com/package/twitterapi-io-mcp)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/twitterapi-io-mcp.svg)](https://www.npmjs.com/package/twitterapi-io-mcp)
@@ -17,13 +17,21 @@ 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
- - **59 API endpoints** with parameters, examples, and response schemas
21
- - **19 guide pages** covering pricing, authentication, rate limits, webhooks
22
- - **21 blog posts** with tutorials and use cases
20
+ - **56 API endpoints** with full HTTP method, body/query parameters, cURL examples, and response schemas
21
+ - **32 guide pages** covering pricing, authentication, rate limits, webhooks, streaming
22
+ - **24 blog posts** with tutorials and use cases
23
+ - **All v2 write endpoints** documented with `login_cookies`, `proxy`, and body params
24
+ - **4 deprecated v1 endpoints** marked with migration notices
23
25
  - **Zero API key required** — everything is bundled locally
24
26
 
25
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.
26
28
 
29
+ ### v1.0.19 Highlights
30
+ - Fresh rescrape from docs.twitterapi.io (Feb 2026)
31
+ - All 26 write endpoints have body parameters (login_cookies, tweet_text, proxy, etc.)
32
+ - All 27 GET endpoints have query parameters
33
+ - Scraper auto-extracts method/body/params — `npm run scrape` keeps data fresh
34
+
27
35
  > **Disclaimer**: Independent community project. Not affiliated with TwitterAPI.io.
28
36
 
29
37
  ## Installation
@@ -168,7 +176,7 @@ Here are real prompts that work well with this MCP server:
168
176
  - *"How do I upload media and create a tweet?"* — triggers sequential `get_twitterapi_endpoint` calls
169
177
 
170
178
  <details>
171
- <summary><strong>All 59 endpoints by category</strong></summary>
179
+ <summary><strong>All 56 endpoints by category</strong></summary>
172
180
 
173
181
  | Category | Count | Endpoints |
174
182
  |----------|-------|-----------|
@@ -226,7 +234,7 @@ Restart your MCP client after adding the server config. Most clients (Claude Des
226
234
  │ Claude / │ ◄──────────────────► │ twitterapi-io-mcp│
227
235
  │ Cursor / │ │ │
228
236
  │ VS Code │ │ Bundled docs │
229
- └─────────────┘ │ (59 endpoints) │
237
+ └─────────────┘ │ (56 endpoints) │
230
238
  └──────────────────┘
231
239
  No network needed
232
240
  ```
@@ -259,9 +267,16 @@ npm start # Start server locally
259
267
  npm run scrape # Update docs snapshot from twitterapi.io
260
268
  ```
261
269
 
270
+ ## Not using MCP?
271
+
272
+ If your AI tool doesn't support MCP (like OpenClaw), use the **skill version** instead — a single markdown file with all 55 endpoints:
273
+
274
+ 👉 **[twitterapi-io-skill](https://github.com/dorukardahan/twitterapi-io-skill)** — works with OpenClaw, Claude, GPT, Gemini, and any LLM.
275
+
262
276
  ## Links
263
277
 
264
278
  - **npm**: [twitterapi-io-mcp](https://www.npmjs.com/package/twitterapi-io-mcp)
279
+ - **Skill version**: [dorukardahan/twitterapi-io-skill](https://github.com/dorukardahan/twitterapi-io-skill)
265
280
  - **GitHub**: [dorukardahan/twitterapi-io-mcp](https://github.com/dorukardahan/twitterapi-io-mcp)
266
281
  - **MCP Registry**: [registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io)
267
282
  - **TwitterAPI.io**: [twitterapi.io](https://twitterapi.io)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twitterapi-io-mcp",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
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",