outx-mcp-server 1.2.0 → 1.2.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
@@ -113,22 +113,24 @@ Add to `~/.codeium/windsurf/mcp_config.json`:
113
113
 
114
114
  ### Watchlist Management
115
115
 
116
+ Pause and resume any watchlist with `disable: true` or `disable: false` on its update tool. Configure Slack alerts with `slack_webhook_url`.
117
+
116
118
  | Tool | Description |
117
119
  |------|-------------|
118
- | `create_keyword_watchlist` | Monitor LinkedIn posts matching keywords with optional required/excluded terms |
119
- | `create_keyword_watchlist_by_prompt` | Create a keyword watchlist from a natural-language prompt (AI generates keywords and labels) |
120
- | `list_keyword_watchlists` | List all keyword watchlists |
121
- | `update_keyword_watchlist` | Update name, scan frequency, or pause/resume |
122
- | `update_keyword_watchlist_prompt` | Update the prompt on an existing watchlist (regenerates all keywords and labels) |
123
- | `delete_keyword_watchlist` | Delete a keyword watchlist and all tracked data |
124
- | `create_people_watchlist` | Track posts from specific LinkedIn profiles |
125
- | `list_people_watchlists` | List all people watchlists |
126
- | `update_people_watchlist` | Update name, scan frequency, or pause/resume |
127
- | `delete_people_watchlist` | Delete a people watchlist |
128
- | `create_company_watchlist` | Monitor posts from LinkedIn company pages |
129
- | `list_company_watchlists` | List all company watchlists |
130
- | `update_company_watchlist` | Update name, scan frequency, or pause/resume |
131
- | `delete_company_watchlist` | Delete a company watchlist |
120
+ | `create_keyword_watchlist` | Create a watchlist that monitors LinkedIn posts matching specific keywords. Supports optional `required_keywords` and `exclude_keywords` per keyword for fine-grained filtering. |
121
+ | `create_keyword_watchlist_from_prompt` | Create a keyword watchlist from a plain-English prompt. OutX generates keywords and intent labels via AI in the background. Useful when you do not want to hand-pick keywords. |
122
+ | `list_keyword_watchlists` | List all keyword watchlists on your account. |
123
+ | `update_keyword_watchlist` | Patch any field on a keyword watchlist: `name`, `fetchFreqInHours`, `disable` (pause/resume), `slack_webhook_url`, `keywords` (replace tracked keywords), or `labels` (replace category labels). Send only the fields you want to change. |
124
+ | `regenerate_keyword_watchlist_from_prompt` | Replace the prompt on an existing watchlist. OutX wipes the current keywords and labels and regenerates them from the new prompt in the background. |
125
+ | `delete_keyword_watchlist` | Delete a keyword watchlist and all tracked data. |
126
+ | `create_people_watchlist` | Create a watchlist that tracks posts from specific LinkedIn profiles by URL or slug. |
127
+ | `list_people_watchlists` | List all people watchlists on your account. |
128
+ | `update_people_watchlist` | Patch a people watchlist: `name`, `fetchFreqInHours`, `disable` (pause/resume), or `slack_webhook_url`. |
129
+ | `delete_people_watchlist` | Delete a people watchlist. |
130
+ | `create_company_watchlist` | Create a watchlist that tracks posts from LinkedIn company pages by URL or slug. |
131
+ | `list_company_watchlists` | List all company watchlists on your account. |
132
+ | `update_company_watchlist` | Patch a company watchlist: `name`, `fetchFreqInHours`, `disable` (pause/resume), or `slack_webhook_url`. |
133
+ | `delete_company_watchlist` | Delete a company watchlist. |
132
134
 
133
135
  ### Posts & Engagement
134
136
 
package/dist/index.js CHANGED
@@ -15,7 +15,7 @@ if (!apiKey) {
15
15
  const client = new OutxClient(apiKey);
16
16
  const server = new McpServer({
17
17
  name: "outx",
18
- version: "1.2.0",
18
+ version: "1.2.1",
19
19
  });
20
20
  registerWatchlistTools(server, client);
21
21
  registerPostTools(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "outx-mcp-server",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "MCP server for OutX — LinkedIn social listening & data API",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -21,7 +21,7 @@ const client = new OutxClient(apiKey);
21
21
 
22
22
  const server = new McpServer({
23
23
  name: "outx",
24
- version: "1.2.0",
24
+ version: "1.2.1",
25
25
  });
26
26
 
27
27
  registerWatchlistTools(server, client);