xactions-mcp 3.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 (3) hide show
  1. package/README.md +35 -0
  2. package/bin.js +15 -0
  3. package/package.json +42 -0
package/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # xactions-mcp
2
+
3
+ > XActions MCP Server — X/Twitter automation for AI agents. No API fees.
4
+
5
+ This is the standalone MCP server package for [XActions](https://github.com/nirholas/XActions). It enables AI assistants like Claude, Cursor, Windsurf, and GPT to automate X/Twitter tasks.
6
+
7
+ ## Quick Start
8
+
9
+ ```bash
10
+ npx xactions-mcp
11
+ ```
12
+
13
+ ## Claude Desktop Config
14
+
15
+ ```json
16
+ {
17
+ "mcpServers": {
18
+ "xactions": {
19
+ "command": "npx",
20
+ "args": ["-y", "xactions-mcp"],
21
+ "env": {
22
+ "XACTIONS_SESSION_COOKIE": "your_auth_token_here"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ ```
28
+
29
+ ## Documentation
30
+
31
+ See the full setup guide: [xactions.app](https://xactions.app) | [GitHub](https://github.com/nirholas/XActions)
32
+
33
+ ## License
34
+
35
+ MIT — by [@nichxbt](https://x.com/nichxbt)
package/bin.js ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env node
2
+ // XActions MCP Server — thin wrapper package
3
+ // This makes `npx xactions-mcp` work by delegating to the xactions package.
4
+ // by nichxbt
5
+
6
+ import { createRequire } from 'module';
7
+ import { pathToFileURL } from 'url';
8
+ import { resolve } from 'path';
9
+
10
+ // Resolve the MCP server entry point from the xactions package
11
+ const require = createRequire(import.meta.url);
12
+ const serverPath = require.resolve('xactions/mcp');
13
+
14
+ // Import and run the MCP server (it self-starts via main())
15
+ await import(pathToFileURL(serverPath).href);
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "xactions-mcp",
3
+ "version": "3.1.0",
4
+ "description": "XActions MCP Server — X/Twitter automation for AI agents (Claude, Cursor, Windsurf, GPT). No API fees.",
5
+ "homepage": "https://xactions.app",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/nirholas/xactions.git",
9
+ "directory": "packages/xactions-mcp"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/nirholas/xactions/issues"
13
+ },
14
+ "license": "MIT",
15
+ "author": "nichxbt",
16
+ "type": "module",
17
+ "bin": {
18
+ "xactions-mcp": "./bin.js"
19
+ },
20
+ "dependencies": {
21
+ "xactions": "^3.0.44"
22
+ },
23
+ "keywords": [
24
+ "xactions",
25
+ "mcp",
26
+ "twitter",
27
+ "x",
28
+ "ai",
29
+ "claude",
30
+ "cursor",
31
+ "windsurf",
32
+ "automation",
33
+ "model-context-protocol"
34
+ ],
35
+ "files": [
36
+ "bin.js",
37
+ "README.md"
38
+ ],
39
+ "engines": {
40
+ "node": ">=18"
41
+ }
42
+ }