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 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