@granitebps/twitter-mcp 1.0.0 → 1.0.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.
Files changed (3) hide show
  1. package/README.md +14 -1
  2. package/package.json +3 -2
  3. package/server.json +3 -3
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Twitter/X MCP
2
2
 
3
+ [![CI](https://github.com/granitebps/twitter-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/granitebps/twitter-mcp/actions/workflows/ci.yml)
4
+ [![npm version](https://img.shields.io/npm/v/%40granitebps%2Ftwitter-mcp.svg)](https://www.npmjs.com/package/@granitebps/twitter-mcp)
5
+ [![npm downloads](https://img.shields.io/npm/dm/%40granitebps%2Ftwitter-mcp.svg)](https://www.npmjs.com/package/@granitebps/twitter-mcp)
6
+ [![MCP Registry](https://img.shields.io/badge/MCP-Registry-5A67D8.svg)](https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.granitebps%2Ftwitter-mcp)
7
+ [![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](LICENSE)
8
+
3
9
  Twitter/X MCP lets an MCP client read public X posts, replies, and profiles, or search X. It uses Rettiwt by default, so you do not need an X developer plan. You can switch to the official X API if you have access.
4
10
 
5
11
  ## Requirements
@@ -231,6 +237,10 @@ The server rejects an incomplete OAuth configuration at startup. It reads creden
231
237
 
232
238
  `max_results` defaults to 10 and accepts 1 through 100. Successful calls return structured MCP content plus JSON text for older clients. Collection tools return the items as JSON text and put cursors and warnings in structured content.
233
239
 
240
+ The [v1 compatibility contract](https://github.com/granitebps/twitter-mcp/blob/main/docs/v1-compatibility.md)
241
+ records the stable tool, input, output, and error behavior for the 1.x release
242
+ line.
243
+
234
244
  ## Errors
235
245
 
236
246
  Tool failures use stable codes:
@@ -297,7 +307,10 @@ Choose a public post whose author profile is still available. If either variable
297
307
 
298
308
  The automated suite covers configuration, provider adapters, MCP calls, the compiled stdio entry point, and installation from an npm tarball. The live Rettiwt smoke test is optional and does not run in normal CI. Version 1.0.0 was prepared without live upstream verification.
299
309
 
300
- Maintainers can follow the [release guide](https://github.com/granitebps/twitter-mcp/blob/main/RELEASE.md) for the manual npm, MCP Registry, and GitHub release process. Live tests must read credentials from repository secrets and must not run for untrusted pull requests.
310
+ Maintainers can follow the [release guide](https://github.com/granitebps/twitter-mcp/blob/main/RELEASE.md)
311
+ for the approved-tag npm, MCP Registry, and GitHub release process. Live tests
312
+ must read credentials from repository secrets and must not run for untrusted
313
+ pull requests.
301
314
 
302
315
  ## Troubleshooting
303
316
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granitebps/twitter-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -33,8 +33,9 @@
33
33
  "format:check": "prettier --check .",
34
34
  "check:package": "node scripts/check-package.mjs",
35
35
  "check:install": "node scripts/check-install.mjs",
36
+ "check:release": "node scripts/check-release.mjs && node scripts/check-workflows.mjs",
36
37
  "test:live": "npm run build && vitest run --config vitest.live.config.ts",
37
- "check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage && npm run check:package && npm run check:install",
38
+ "check": "npm run format:check && npm run lint && npm run typecheck && npm run test:coverage && npm run check:release && npm run check:package && npm run check:install",
38
39
  "prepack": "npm run clean && npm run build"
39
40
  },
40
41
  "engines": {
package/server.json CHANGED
@@ -2,17 +2,17 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.granitebps/twitter-mcp",
4
4
  "title": "Twitter/X MCP",
5
- "description": "Read public Twitter/X posts, replies, profiles, and search results through Rettiwt or the official X API.",
5
+ "description": "Read public X posts, replies, profiles, and search results through Rettiwt or the official API.",
6
6
  "repository": {
7
7
  "url": "https://github.com/granitebps/twitter-mcp",
8
8
  "source": "github"
9
9
  },
10
- "version": "1.0.0",
10
+ "version": "1.0.1",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@granitebps/twitter-mcp",
15
- "version": "1.0.0",
15
+ "version": "1.0.1",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },