-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 KB
/
package.json
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
46
{
"name": "@enescinar/twitter-mcp",
"version": "0.1.0",
"description": "A Model Context Protocol server allows to interact with Twitter, enabling posting tweets and searching Twitter.",
"type": "module",
"main": "build/index.js",
"bin": {
"twitter-server": "./build/index.js"
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"server",
"twitter",
"claude"
],
"author": "Enes Cinar",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "^16.4.7",
"twitter-api-v2": "^1.18.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnesCinr/twitter-mcp.git"
},
"bugs": {
"url": "https://github.com/EnesCinr/twitter-mcp/issues"
},
"homepage": "https://github.com/EnesCinr/twitter-mcp#readme"
}