posterly-mcp-server 0.40.0 → 0.40.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
@@ -122,7 +122,7 @@ Add the same server definition to your Cursor MCP settings:
122
122
 
123
123
  ## Available tools
124
124
 
125
- `posterly-mcp-server@0.40.0` exposes 89 tools.
125
+ `posterly-mcp-server@0.40.1` exposes 89 tools.
126
126
 
127
127
  Public setup tools work before `POSTERLY_API_KEY` exists:
128
128
 
@@ -76,6 +76,7 @@ export class PosterlyClient {
76
76
  const url = `${this.baseUrl}/api/v1${path}`;
77
77
  const headers = {
78
78
  Authorization: `Bearer ${this.apiKey}`,
79
+ 'X-Posterly-Source': 'mcp_stdio',
79
80
  };
80
81
  const init = { method, headers };
81
82
  if (body instanceof FormData) {
@@ -1 +1 @@
1
- export declare const POSTERLY_MCP_VERSION = "0.40.0";
1
+ export declare const POSTERLY_MCP_VERSION = "0.40.1";
@@ -5,4 +5,4 @@
5
5
  // tool set (minus the intentional pre-auth signup tools that only this stdio
6
6
  // package exposes). `npm run check:mcp-parity` enforces both the version match
7
7
  // and the tool-list match, and runs in the pre-commit hook.
8
- export const POSTERLY_MCP_VERSION = '0.40.0';
8
+ export const POSTERLY_MCP_VERSION = '0.40.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "posterly-mcp-server",
3
- "version": "0.40.0",
3
+ "version": "0.40.1",
4
4
  "mcpName": "io.github.awpthorp/posterly",
5
5
  "description": "MCP server for posterly: schedule and publish social media posts across 18 platforms from any MCP client (Claude, ChatGPT, Cursor, Windsurf, Cline, and more)",
6
6
  "license": "MIT",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "io.github.awpthorp/posterly",
4
4
  "title": "posterly",
5
5
  "description": "Validate, schedule, publish, and analyze social content across 18 platforms with posterly.",
6
- "version": "0.40.0",
6
+ "version": "0.40.1",
7
7
  "websiteUrl": "https://www.poster.ly/mcp",
8
8
  "repository": {
9
9
  "url": "https://github.com/awpthorp/posterly",
@@ -14,7 +14,7 @@
14
14
  {
15
15
  "registryType": "npm",
16
16
  "identifier": "posterly-mcp-server",
17
- "version": "0.40.0",
17
+ "version": "0.40.1",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },
@@ -1028,6 +1028,7 @@ export class PosterlyClient {
1028
1028
  const url = `${this.baseUrl}/api/v1${path}`;
1029
1029
  const headers: Record<string, string> = {
1030
1030
  Authorization: `Bearer ${this.apiKey}`,
1031
+ 'X-Posterly-Source': 'mcp_stdio',
1031
1032
  };
1032
1033
 
1033
1034
  const init: RequestInit = { method, headers };
@@ -5,4 +5,4 @@
5
5
  // tool set (minus the intentional pre-auth signup tools that only this stdio
6
6
  // package exposes). `npm run check:mcp-parity` enforces both the version match
7
7
  // and the tool-list match, and runs in the pre-commit hook.
8
- export const POSTERLY_MCP_VERSION = '0.40.0';
8
+ export const POSTERLY_MCP_VERSION = '0.40.1';