Skip to content

Commit 283f37e

Browse files
conorbronsdonclaude
andcommitted
Bump version to 0.2.2
Changes since 0.2.1: auth error message fix, unit tests, CI workflow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 47b5f5c commit 283f37e

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@conorbronsdon/substack-mcp",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "MCP server for Substack — read posts, manage drafts. No publish or delete by design.",
55
"type": "module",
66
"bin": {

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"url": "https://github.com/conorbronsdon/substack-mcp",
88
"source": "github"
99
},
10-
"version": "0.2.1",
10+
"version": "0.2.2",
1111
"packages": [
1212
{
1313
"registryType": "npm",
1414
"identifier": "@conorbronsdon/substack-mcp",
15-
"version": "0.2.1",
15+
"version": "0.2.2",
1616
"runtimeHint": "npx",
1717
"transport": {
1818
"type": "stdio"

src/api/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class SubstackClient {
3535
const headers: Record<string, string> = {
3636
Cookie: this.cookie,
3737
"Content-Type": "application/json",
38-
"User-Agent": "substack-mcp/0.2.1",
38+
"User-Agent": "substack-mcp/0.2.2",
3939
...(options.headers as Record<string, string> || {}),
4040
};
4141

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { markdownToProseMirror, markdownToProseMirrorContent } from "./utils/mar
66
export function createServer(client: SubstackClient): McpServer {
77
const server = new McpServer({
88
name: "substack-mcp",
9-
version: "0.2.1",
9+
version: "0.2.2",
1010
});
1111

1212
// --- Read tools ---

0 commit comments

Comments
 (0)