@0xquinto/rss-mcp 1.1.2 → 1.1.3
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 +2 -52
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# RSS MCP Server
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
An MCP server that lets AI assistants subscribe to, fetch, search, and manage RSS feeds. Built with TypeScript and SQLite with full-text search.
|
|
4
6
|
|
|
5
7
|
## Inspiration
|
|
@@ -64,62 +66,10 @@ npx @0xquinto/rss-mcp
|
|
|
64
66
|
| `mark_read` | Mark posts as read |
|
|
65
67
|
| `mark_unread` | Mark posts as unread |
|
|
66
68
|
|
|
67
|
-
### `get_post_content`
|
|
68
|
-
|
|
69
|
-
Retrieves article content with chunked reading support for long articles (e.g. interview transcripts).
|
|
70
|
-
|
|
71
|
-
| Parameter | Type | Default | Description |
|
|
72
|
-
| ------------ | ------ | ------- | ----------------------------------------------------- |
|
|
73
|
-
| `post_id` | number | — | ID of the post (required) |
|
|
74
|
-
| `max_length` | number | 5000 | Max characters per chunk. Use 100000 for full content |
|
|
75
|
-
| `offset` | number | 0 | Character offset to start reading from |
|
|
76
|
-
|
|
77
|
-
The response includes `total_length`, `offset`, `chunk_length`, and `truncated` so you can paginate through long content:
|
|
78
|
-
|
|
79
|
-
```
|
|
80
|
-
get_post_content(post_id=123, max_length=20000, offset=0)
|
|
81
|
-
get_post_content(post_id=123, max_length=20000, offset=20000)
|
|
82
|
-
# ...continue until truncated=false
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
Content is fetched from the original URL and cached on first access.
|
|
86
|
-
|
|
87
69
|
## Data
|
|
88
70
|
|
|
89
71
|
Posts are stored in `~/.rss-mcp/rss.db` (SQLite). The database and FTS5 index are created automatically on first run.
|
|
90
72
|
|
|
91
|
-
## MCP Configuration
|
|
92
|
-
|
|
93
|
-
### Claude Code
|
|
94
|
-
|
|
95
|
-
Add to your project or user MCP settings:
|
|
96
|
-
|
|
97
|
-
```json
|
|
98
|
-
{
|
|
99
|
-
"mcpServers": {
|
|
100
|
-
"rss-mcp": {
|
|
101
|
-
"command": "bunx",
|
|
102
|
-
"args": ["@0xquinto/rss-mcp"]
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
### Claude Desktop
|
|
109
|
-
|
|
110
|
-
Add to `claude_desktop_config.json`:
|
|
111
|
-
|
|
112
|
-
```json
|
|
113
|
-
{
|
|
114
|
-
"mcpServers": {
|
|
115
|
-
"rss-mcp": {
|
|
116
|
-
"command": "bunx",
|
|
117
|
-
"args": ["@0xquinto/rss-mcp"]
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
```
|
|
122
|
-
|
|
123
73
|
## License
|
|
124
74
|
|
|
125
75
|
MIT
|