-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "twitterapi-io-mcp",
"version": "1.5.10",
"mcpName": "io.github.dorukardahan/twitterapi-io-mcp",
"description": "TwitterAPI.io MCP server providing offline access to docs (endpoints, pages, blogs) for Claude and other AI assistants",
"main": "index.js",
"type": "module",
"bin": {
"twitterapi-io-mcp": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "node --test test/index.test.js",
"build": "echo 'No build step required - pure ES Module'",
"scrape": "node scrape-all.cjs",
"generate:docs": "node generate-context7-docs.cjs",
"prepublishOnly": "npm audit --audit-level=high && npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"twitter",
"twitter-api",
"x-api",
"twitterapi",
"twitterapi.io",
"twitterapi-io",
"twitterapi-io-mcp",
"api-documentation",
"api-reference",
"ai-assistant",
"llm",
"anthropic",
"offline-docs",
"claude-mcp",
"twitter-docs",
"mcp-server",
"claude-desktop",
"tweet-search",
"social-media-api",
"twitter-data",
"cursor-mcp",
"windsurf-mcp"
],
"author": "Doruk Ardahan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dorukardahan/twitterapi-io-mcp.git"
},
"homepage": "https://github.com/dorukardahan/twitterapi-io-mcp#readme",
"bugs": {
"url": "https://github.com/dorukardahan/twitterapi-io-mcp/issues"
},
"engines": {
"node": ">=18.18.0"
},
"files": [
"index.js",
"data/docs.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^25.0.3"
},
"overrides": {
"npm": "11.13.0"
}
}