Skip to content

Commit 8437253

Browse files
committed
chore: mcp server update
1 parent 6149385 commit 8437253

File tree

6 files changed

+646
-37
lines changed

6 files changed

+646
-37
lines changed

README.md

Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -919,9 +919,66 @@ The contact will be automatically subscribed to email communications.
919919
- `email`: email parameter (required)
920920
- `name`: name parameter
921921
- `surname`: surname parameter
922-
- `group_uuids`: group_uuids parameter
923922
- `note`: note parameter
924923

924+
### reach_filterSegmentContactsV1
925+
926+
Filter and retrieve contacts based on segmentation criteria.
927+
928+
This endpoint allows filtering contacts using specified conditions and returns a paginated list of matching contacts.
929+
The results can be filtered using various attributes like email, name, subscription status, etc.
930+
931+
- **Method**: `POST`
932+
- **Path**: `/api/reach/v1/segmentation/filters/contacts`
933+
934+
**Parameters**:
935+
936+
- `conditions`: conditions parameter (required)
937+
- `logic`: logic parameter (required)
938+
- `page`: page parameter
939+
- `per_page`: per_page parameter
940+
941+
### reach_listContactSegmentsV1
942+
943+
Get a list of all contact segments.
944+
945+
This endpoint returns a list of contact segments that can be used to organize contacts.
946+
947+
- **Method**: `GET`
948+
- **Path**: `/api/reach/v1/segmentation/segments`
949+
950+
951+
952+
### reach_createANewContactSegmentV1
953+
954+
Create a new contact segment.
955+
956+
This endpoint allows creating a new contact segment that can be used to organize contacts.
957+
The segment can be configured with specific criteria like email, name, subscription status, etc.
958+
959+
- **Method**: `POST`
960+
- **Path**: `/api/reach/v1/segmentation/segments`
961+
962+
**Parameters**:
963+
964+
- `name`: name parameter (required)
965+
- `conditions`: conditions parameter (required)
966+
- `logic`: logic parameter (required)
967+
968+
### reach_getSegmentDetailsV1
969+
970+
Get details of a specific segment.
971+
972+
This endpoint retrieves information about a single segment identified by UUID.
973+
Segments are used to organize and group contacts based on specific criteria.
974+
975+
- **Method**: `GET`
976+
- **Path**: `/api/reach/v1/segmentation/segments/{segmentUuid}`
977+
978+
**Parameters**:
979+
980+
- `segmentUuid`: Segment uuid parameter (required)
981+
925982
### VPS_getDataCenterListV1
926983

927984
Retrieve all available data centers.
@@ -1743,7 +1800,7 @@ Snapshots, if there are any, will be deleted.
17431800
## Password Requirements
17441801
Password will be checked against leaked password databases.
17451802
Requirements for the password are:
1746-
- At least 8 characters long
1803+
- At least 12 characters long
17471804
- At least one uppercase letter
17481805
- At least one lowercase letter
17491806
- At least one number

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hostinger-api-mcp",
3-
"version": "0.1.22",
3+
"version": "0.1.23",
44
"description": "MCP server for Hostinger API",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)