@ldraney/mcp-linkedin 0.2.1 → 0.2.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/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": "0.2",
3
3
  "name": "@ldraney/mcp-linkedin",
4
- "version": "0.2.1",
4
+ "version": "0.2.3",
5
5
  "description": "MCP server for LinkedIn - create posts, images, videos, documents, polls. One-click OAuth via built-in relay.",
6
6
  "author": {
7
7
  "name": "Lucas Draney"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ldraney/mcp-linkedin",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "MCP server for managing LinkedIn posts",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -125,7 +125,7 @@ class LinkedInAPI {
125
125
  */
126
126
  constructor(config) {
127
127
  this.accessToken = config.accessToken;
128
- this.apiVersion = config.apiVersion;
128
+ this.apiVersion = config.apiVersion || '202510'; // YYYYMM format
129
129
  this.personId = config.personId;
130
130
  }
131
131