reddit-mcp-server 1.0.6 → 1.0.9
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/CHANGELOG.md +34 -0
- package/dist/bin.js +1036 -899
- package/dist/index.js +13 -8
- package/package.json +7 -1
- package/.claude/settings.local.json +0 -35
- package/.env.example +0 -7
- package/.prettierignore +0 -7
- package/.prettierrc +0 -8
- package/CLAUDE.md +0 -104
- package/Dockerfile +0 -17
- package/ROADMAP.md +0 -77
- package/eslint.config.js +0 -76
- package/pnpm-workspace.yaml +0 -2
- package/smithery.yaml +0 -37
- package/src/bin.ts +0 -7
- package/src/client/__tests__/reddit-client.test.ts +0 -478
- package/src/client/reddit-client.ts +0 -638
- package/src/index.ts +0 -518
- package/src/tools/__tests__/comment-tools.test.ts +0 -119
- package/src/tools/__tests__/search-tools.test.ts +0 -100
- package/src/tools/__tests__/user-tools.test.ts +0 -258
- package/src/tools/comment-tools.ts +0 -61
- package/src/tools/index.ts +0 -5
- package/src/tools/post-tools.ts +0 -178
- package/src/tools/search-tools.ts +0 -67
- package/src/tools/subreddit-tools.ts +0 -91
- package/src/tools/user-tools.ts +0 -147
- package/src/types.ts +0 -148
- package/src/utils/formatters.ts +0 -316
- package/tsconfig.json +0 -19
- package/tsup.config.ts +0 -12
- package/vitest.config.ts +0 -20
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [1.0.7] - 2025-06-27
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Fixed server crash issue caused by stdout pollution in bin.js
|
|
9
|
+
- Cleaned up published package to only include necessary files (reduced from 112KB to 24KB)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Search Reddit functionality (`search_reddit` tool)
|
|
13
|
+
- Get post comments with threaded display (`get_post_comments` tool)
|
|
14
|
+
- Get user posts (`get_user_posts` tool)
|
|
15
|
+
- Get user comments (`get_user_comments` tool)
|
|
16
|
+
- Comprehensive test suite for all new functionality
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Migrated from axios to native fetch API
|
|
20
|
+
- Improved error handling and removed console output that violated MCP protocol
|
|
21
|
+
|
|
22
|
+
## [1.0.6] - 2025-06-27
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
- New Reddit API endpoints (had packaging issues, use 1.0.7 instead)
|
|
26
|
+
|
|
27
|
+
## [1.0.5] - 2025-06-27
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Migrated from axios to fetch for HTTP requests
|
|
31
|
+
- Fixed linting errors and improved code formatting
|
|
32
|
+
|
|
33
|
+
## [1.0.4] and earlier
|
|
34
|
+
- Previous versions with axios-based implementation
|