-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 997 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@getxapi/mcp",
"version": "0.1.1",
"description": "Official GetXAPI MCP server — use the Twitter/X API (search, users, tweets, posting, DMs, articles) inside Claude, Cursor, and any MCP client.",
"type": "module",
"bin": {
"getxapi-mcp": "dist/index.js"
},
"files": [
"dist",
"manifest.json",
"README.md",
"LICENSE"
],
"scripts": {
"build:manifest": "node scripts/build-manifest.mjs",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"twitter",
"x",
"twitter-api",
"x-api",
"claude",
"cursor",
"getxapi"
],
"homepage": "https://www.getxapi.com",
"repository": {
"type": "git",
"url": "https://github.com/getxapi/getxapi-mcp.git"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^5.5.0"
}
}