Skip to content

Commit 76905b9

Browse files
committed
Sync
Signed-off-by: David Gageot <[email protected]>
1 parent d3fbdb8 commit 76905b9

File tree

3 files changed

+49
-23
lines changed

3 files changed

+49
-23
lines changed

prompts/catalog.yaml

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2391,28 +2391,6 @@ registry:
23912391
- name: smithery-cli.api_key
23922392
prompts: 0
23932393
resources: {}
2394-
doit:
2395-
description: DoiT official MCP Server.
2396-
title: DoiT
2397-
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/mcp/doit.md
2398-
readme: https://github.com/docker/labs-ai-tools-for-devs/blob/main/prompts/mcp/readmes/doit.md
2399-
source: https://github.com/doitintl/doit-mcp-server/tree/main
2400-
icon: https://avatars.githubusercontent.com/u/8424863?s=200&v=4
2401-
tools:
2402-
- name: get_anomalies
2403-
- name: get_anomaly
2404-
- name: get_cloud_incident
2405-
- name: get_cloud_incidents
2406-
- name: get_dimension
2407-
- name: get_report_results
2408-
- name: list_dimensions
2409-
- name: list_reports
2410-
- name: run_query
2411-
- name: validate_user
2412-
secrets:
2413-
- name: doit.api_key
2414-
prompts: 0
2415-
resources: {}
24162394
elevenlabs:
24172395
description: The official ElevenLabs MCP server.
24182396
title: ElevenLabs
@@ -2592,8 +2570,12 @@ registry:
25922570
- name: in-app-message-list
25932571
- name: push-message-detail
25942572
- name: push-message-list
2573+
- name: remote-config-create
25952574
- name: remote-config-detail
25962575
- name: remote-config-list
2576+
- name: remote-config-update
2577+
- name: remote-config-update-description
2578+
- name: remote-config-update-user-identifier-criteria
25972579
- name: retention-series
25982580
- name: stickiness-series
25992581
secrets:
@@ -2791,6 +2773,7 @@ registry:
27912773
- name: delete_observations
27922774
- name: delete_relations
27932775
- name: find_nodes
2776+
- name: open_nodes
27942777
- name: read_graph
27952778
- name: search_nodes
27962779
secrets:

prompts/mcp/readmes/hackle.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,12 @@ Tools provided by this Server|Short Description
3131
`in-app-message-list`|Fetches a paginated list of in-app messages with search functionality.|
3232
`push-message-detail`|Retrieves detailed information for a specific push message.|
3333
`push-message-list`|Fetches a paginated list of push messages with search functionality.|
34+
`remote-config-create`|Creates an empty remote config.|
3435
`remote-config-detail`|Fetch remote config detail.|
3536
`remote-config-list`|Fetch Remote Config list.|
37+
`remote-config-update`|Updates remote config's content.|
38+
`remote-config-update-description`|Updates remote config's description.|
39+
`remote-config-update-user-identifier-criteria`|Updates remote config's user identifier criteria.|
3640
`retention-series`|Retrieves time-series data of user retention.|
3741
`stickiness-series`|Retrieves time-series data of user stickiness (return visit frequency).|
3842

@@ -121,6 +125,13 @@ Parameters|Type|Description
121125
`pageSize`|`number` *optional*|
122126
`searchKeyword`|`string` *optional*|name, description, or campaignKey of a push message.
123127

128+
---
129+
#### Tool: **`remote-config-create`**
130+
Creates an empty remote config. It is recommended to update an existing RC first if there is an associated RC with the one you want to create since the total number of RC is limited.
131+
Parameters|Type|Description
132+
-|-|-
133+
`body`|`object`|
134+
124135
---
125136
#### Tool: **`remote-config-detail`**
126137
Fetch remote config detail.
@@ -138,6 +149,30 @@ Parameters|Type|Description
138149
`searchKeyword`|`string` *optional*|
139150
`status`|`string` *optional*|
140151

152+
---
153+
#### Tool: **`remote-config-update`**
154+
Updates remote config's content.
155+
Parameters|Type|Description
156+
-|-|-
157+
`body`|`object`|
158+
`remoteConfigId`|`number`|Remote config's id.
159+
160+
---
161+
#### Tool: **`remote-config-update-description`**
162+
Updates remote config's description. The change will be applied to both production and development environment.
163+
Parameters|Type|Description
164+
-|-|-
165+
`body`|`object`|
166+
`remoteConfigId`|`number`|Remote config's id.
167+
168+
---
169+
#### Tool: **`remote-config-update-user-identifier-criteria`**
170+
Updates remote config's user identifier criteria. The change will be applied to both production and development environment.
171+
Parameters|Type|Description
172+
-|-|-
173+
`body`|`object`|
174+
`remoteConfigId`|`number`|Remote config's id.
175+
141176
---
142177
#### Tool: **`retention-series`**
143178
Retrieves time-series data of user retention. Available in daily, weekly, and monthly units.

prompts/mcp/readmes/neo4j-memory.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ Tools provided by this Server|Short Description
2626
`delete_entities`|Delete multiple entities and their associated relations from the knowledge graph|
2727
`delete_observations`|Delete specific observations from entities in the knowledge graph|
2828
`delete_relations`|Delete multiple relations from the knowledge graph|
29-
`find_nodes`|Open specific nodes in the knowledge graph by their names|
29+
`find_nodes`|Find specific nodes in the knowledge graph by their names|
30+
`open_nodes`|Open specific nodes in the knowledge graph by their names|
3031
`read_graph`|Read the entire knowledge graph|
3132
`search_nodes`|Search for nodes in the knowledge graph based on a query|
3233

@@ -76,6 +77,13 @@ Parameters|Type|Description
7677

7778
---
7879
#### Tool: **`find_nodes`**
80+
Find specific nodes in the knowledge graph by their names
81+
Parameters|Type|Description
82+
-|-|-
83+
`names`|`array`|An array of entity names to retrieve
84+
85+
---
86+
#### Tool: **`open_nodes`**
7987
Open specific nodes in the knowledge graph by their names
8088
Parameters|Type|Description
8189
-|-|-

0 commit comments

Comments
 (0)