substack-article-mcp 0.5.0 → 0.5.1

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 CHANGED
@@ -56,6 +56,8 @@ Ask from chat — the app starts the server automatically:
56
56
  - "List my recent Substack articles"
57
57
  - "Get the full content of my article about [topic]"
58
58
  - "Search my articles for [keyword]"
59
+ - "Show me the comments on my latest article"
60
+ - "Get the article about AI tools from platformer" *(reads someone else's newsletter)*
59
61
 
60
62
  ---
61
63
 
@@ -80,6 +82,9 @@ Ask from chat — the app starts the server automatically:
80
82
  | `list_articles` | List published articles (metadata, engagement, paid/free). |
81
83
  | `get_article` | Full article as markdown (includes premium content). |
82
84
  | `search_articles` | Search published articles by keyword. |
85
+ | `get_comments` | Full comment tree — every comment, reply, author name, reactions. |
86
+
87
+ All content tools accept an optional `subdomain` parameter. This means you can read articles from **any** Substack newsletter you subscribe to, not just your own. For example, specify `subdomain: "platformer"` to read Platformer articles.
83
88
 
84
89
  ---
85
90
 
package/dist/index.js CHANGED
@@ -38,7 +38,7 @@ async function main() {
38
38
  return;
39
39
  }
40
40
  if (command === "--version" || command === "-v") {
41
- console.log("substack-article-mcp v0.4.1");
41
+ console.log("substack-article-mcp v0.5.1");
42
42
  return;
43
43
  }
44
44
  // Default: start MCP server
@@ -47,7 +47,7 @@ async function main() {
47
47
  }
48
48
  function printHelp() {
49
49
  console.log(`
50
- substack-article-mcp — Substack MCP Server (v0.4.1)
50
+ substack-article-mcp — Substack MCP Server (v0.5.1)
51
51
 
52
52
  SETUP (run once in your terminal)
53
53
  npx -y substack-article-mcp login
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substack-article-mcp",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "MCP server for Substack — access your articles, notes, and engagement data from Claude, Cursor, or any MCP client. Authenticated access to premium/paywalled content.",
5
5
  "type": "module",
6
6
  "bin": {