posterly-mcp-server 0.1.0 → 0.1.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.
@@ -5,7 +5,7 @@ export class PosterlyClient {
5
5
  apiKey;
6
6
  constructor(apiKey, baseUrl) {
7
7
  this.apiKey = apiKey || process.env.POSTERLY_API_KEY || '';
8
- this.baseUrl = (baseUrl || process.env.POSTERLY_URL || 'https://posterly.app').replace(/\/$/, '');
8
+ this.baseUrl = (baseUrl || process.env.POSTERLY_URL || 'https://www.poster.ly').replace(/\/$/, '');
9
9
  if (!this.apiKey) {
10
10
  throw new Error('POSTERLY_API_KEY is required. Set it as an environment variable.');
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "posterly-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for posterly — schedule social media posts from Claude Desktop",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -33,7 +33,7 @@ export class PosterlyClient {
33
33
 
34
34
  constructor(apiKey?: string, baseUrl?: string) {
35
35
  this.apiKey = apiKey || process.env.POSTERLY_API_KEY || '';
36
- this.baseUrl = (baseUrl || process.env.POSTERLY_URL || 'https://posterly.app').replace(/\/$/, '');
36
+ this.baseUrl = (baseUrl || process.env.POSTERLY_URL || 'https://www.poster.ly').replace(/\/$/, '');
37
37
 
38
38
  if (!this.apiKey) {
39
39
  throw new Error('POSTERLY_API_KEY is required. Set it as an environment variable.');