@side-quest/x-api 0.0.0 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`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
8
+
9
+ Extracted from side-quest-marketplace as a standalone package. Provides:
10
+
11
+ - `createXApiClient()` — resilient API client with retry, timeout, rate limit awareness
12
+ - 6 MCP tools: get_tweet, get_thread, get_timeline, search, get_user, get_replies
13
+ - Markdown and JSON formatters for all response types
14
+ - `bunx x-api-mcp` CLI for running the MCP server
15
+
3
16
  All notable changes to this project will be documented in this file.
4
17
 
5
18
  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.0.0",
3
+ "version": "0.1.0",
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": "./dist/mcp/index.js"
25
+ "x-api-mcp": "dist/mcp/index.js"
26
26
  },
27
27
  "files": [
28
28
  "dist/**",