@striderlabs/mcp-reddit 1.0.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.
- package/README.md +57 -0
- package/dist/index.js +21133 -0
- package/package.json +24 -0
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@striderlabs/mcp-reddit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "MCP server connector for Reddit — search subreddits, browse posts, comments, and manage user interactions via Playwright browser automation",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": { "mcp-reddit": "dist/index.js" },
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --external:playwright",
|
|
9
|
+
"start": "node dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"keywords": ["mcp", "reddit", "social", "forum", "modelcontextprotocol"],
|
|
12
|
+
"author": "StriderLabs",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
16
|
+
"playwright": "^1.40.0"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@types/node": "^20.0.0",
|
|
20
|
+
"esbuild": "^0.20.0",
|
|
21
|
+
"typescript": "^5.0.0"
|
|
22
|
+
},
|
|
23
|
+
"files": ["dist/", "README.md"]
|
|
24
|
+
}
|