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 +16 -14
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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` |
|
|
119
|
-
| `
|
|
120
|
-
| `list_keyword_watchlists` | List all keyword watchlists |
|
|
121
|
-
| `update_keyword_watchlist` |
|
|
122
|
-
| `
|
|
123
|
-
| `delete_keyword_watchlist` | Delete a keyword watchlist and all tracked data |
|
|
124
|
-
| `create_people_watchlist` |
|
|
125
|
-
| `list_people_watchlists` | List all people watchlists |
|
|
126
|
-
| `update_people_watchlist` |
|
|
127
|
-
| `delete_people_watchlist` | Delete a people watchlist |
|
|
128
|
-
| `create_company_watchlist` |
|
|
129
|
-
| `list_company_watchlists` | List all company watchlists |
|
|
130
|
-
| `update_company_watchlist` |
|
|
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
package/package.json
CHANGED