@side-quest/x-api 0.0.0 → 0.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/CHANGELOG.md +19 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2](https://github.com/nathanvale/side-quest-x-api/pull/2) [`63cc8c2`](https://github.com/nathanvale/side-quest-x-api/commit/63cc8c29e8787dadf3a50aa2a097d62514a73f54) Thanks [@nathanvale](https://github.com/nathanvale)! - Add threads and timelines keywords to package metadata
|
|
8
|
+
|
|
9
|
+
## 0.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`ce934ea`](https://github.com/nathanvale/side-quest-x-api/commit/ce934eae840776f5d9afb18fd4ed03cb42694983) Thanks [@nathanvale](https://github.com/nathanvale)! - feat: initial release — read-only Twitter/X API v2 client with MCP server
|
|
14
|
+
|
|
15
|
+
Extracted from side-quest-marketplace as a standalone package. Provides:
|
|
16
|
+
|
|
17
|
+
- `createXApiClient()` — resilient API client with retry, timeout, rate limit awareness
|
|
18
|
+
- 6 MCP tools: get_tweet, get_thread, get_timeline, search, get_user, get_replies
|
|
19
|
+
- Markdown and JSON formatters for all response types
|
|
20
|
+
- `bunx x-api-mcp` CLI for running the MCP server
|
|
21
|
+
|
|
3
22
|
All notable changes to this project will be documented in this file.
|
|
4
23
|
|
|
5
24
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@side-quest/x-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Read-only Twitter/X API v2 — tweets, threads, timelines, user profiles",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Nathan Vale",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"./package.json": "./package.json"
|
|
23
23
|
},
|
|
24
24
|
"bin": {
|
|
25
|
-
"x-api-mcp": "
|
|
25
|
+
"x-api-mcp": "dist/mcp/index.js"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"dist/**",
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"api",
|
|
45
45
|
"mcp",
|
|
46
46
|
"tweets",
|
|
47
|
+
"threads",
|
|
48
|
+
"timelines",
|
|
47
49
|
"read-only",
|
|
48
50
|
"typescript",
|
|
49
51
|
"bun"
|