@daanrongen/reddit-mcp 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.
Files changed (3) hide show
  1. package/README.md +108 -0
  2. package/dist/main.js +35598 -0
  3. package/package.json +55 -0
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@daanrongen/reddit-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Reddit — search posts, browse subreddits, read comments, and write with OAuth2 user auth over stdio",
5
+ "type": "module",
6
+ "bin": {
7
+ "reddit-mcp": "./dist/main.js"
8
+ },
9
+ "main": "./dist/main.js",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "start": "bun run src/main.ts",
15
+ "dev": "bun --watch src/main.ts",
16
+ "inspect": "DANGEROUSLY_OMIT_AUTH=true mcp-inspector bun dist/main.js",
17
+ "build": "bun build src/main.ts --outfile dist/main.js --target bun",
18
+ "typecheck": "tsc -p tsconfig.check.json",
19
+ "test": "bun test",
20
+ "lint": "biome check .",
21
+ "format": "biome format --write .",
22
+ "release:patch": "npm version patch",
23
+ "release:minor": "npm version minor",
24
+ "release:major": "npm version major",
25
+ "postversion": "git push --follow-tags"
26
+ },
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/daanrongen/reddit-mcp.git"
31
+ },
32
+ "keywords": [
33
+ "mcp",
34
+ "reddit",
35
+ "model-context-protocol",
36
+ "effect"
37
+ ],
38
+ "engines": {
39
+ "bun": ">=1.0.0"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "dependencies": {
45
+ "@modelcontextprotocol/sdk": "^1.10.2",
46
+ "effect": "^3.13.0",
47
+ "zod": "^3.24.1"
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "^2.4.8",
51
+ "bun-types": "latest",
52
+ "lefthook": "^2.1.4",
53
+ "typescript": "^5.8.3"
54
+ }
55
+ }