xbird-mcp 0.1.3 → 0.1.4
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 +35 -11
- package/dist/mcp.js +21 -21
- package/package.json +25 -4
package/README.md
CHANGED
|
@@ -1,9 +1,33 @@
|
|
|
1
|
-
# xbird
|
|
1
|
+
# xbird — Twitter/X for AI Agents
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/xbird-mcp)
|
|
4
|
+
[](https://skills.sh/checkra1neth/xbird)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
2
6
|
|
|
3
7
|
MCP server that gives AI agents (Claude, Cursor, Windsurf) **30 Twitter/X tools** — reading, searching, posting, engagement, media upload — with per-call x402 micropayments on Base.
|
|
4
8
|
|
|
5
9
|
Runs locally on your machine using your Twitter cookies, so requests come from a residential IP (no datacenter blocks).
|
|
6
10
|
|
|
11
|
+
## Quick Install
|
|
12
|
+
|
|
13
|
+
### As Claude Code Plugin
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
/plugin install checkra1neth/xbird
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### As Agent Skill (works with 35+ agents)
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx skills add checkra1neth/xbird
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### MCP Server Only
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
bunx xbird-mcp
|
|
29
|
+
```
|
|
30
|
+
|
|
7
31
|
## How It Works
|
|
8
32
|
|
|
9
33
|
```
|
|
@@ -16,16 +40,6 @@ xbird-mcp (local process)
|
|
|
16
40
|
|
|
17
41
|
The xbird server only verifies payments. All Twitter API calls happen locally from your machine.
|
|
18
42
|
|
|
19
|
-
## Install
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
bunx xbird-mcp
|
|
23
|
-
# or
|
|
24
|
-
npx xbird-mcp
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
No global install needed — `bunx`/`npx` runs it directly.
|
|
28
|
-
|
|
29
43
|
## Setup
|
|
30
44
|
|
|
31
45
|
### Claude Code
|
|
@@ -130,6 +144,16 @@ Every tool call makes a micropayment via the [x402 protocol](https://www.x402.or
|
|
|
130
144
|
|
|
131
145
|
Prices range from $0.001 (reading a tweet) to $0.05 (uploading media).
|
|
132
146
|
|
|
147
|
+
## Distribution
|
|
148
|
+
|
|
149
|
+
| Platform | Install |
|
|
150
|
+
|----------|---------|
|
|
151
|
+
| **npm** | `bunx xbird-mcp` / `npx xbird-mcp` |
|
|
152
|
+
| **Claude Code Plugin** | `/plugin install checkra1neth/xbird` |
|
|
153
|
+
| **skills.sh** | `npx skills add checkra1neth/xbird` |
|
|
154
|
+
| **SkillsMP** | [skillsmp.com](https://skillsmp.com/) |
|
|
155
|
+
| **Smithery** | [smithery.ai](https://smithery.ai/) |
|
|
156
|
+
|
|
133
157
|
## License
|
|
134
158
|
|
|
135
159
|
MIT
|