You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: claude-skills/forest-mcp/SKILL.md
+41-3Lines changed: 41 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
name: forest-mcp
3
-
description: Query Forest Admin data through MCP tools. Use when the user wants to search, filter, or explore data from their Forest Admin database. Triggers on questions like "find all users", "show orders from last week", "how many products", or any data exploration request.
3
+
description: Query and manipulate Forest Admin data through MCP tools. Use when the user wants to search, filter, explore, create, update, or delete data from their Forest Admin database. Triggers on questions like "find all users", "create a new order", "update user 42", "delete inactive products", or any data operation request.
4
4
---
5
5
6
6
# Forest Admin MCP
7
7
8
-
Query Forest Admin data as if it were a database, with an abstraction layer that handles authentication, filtering, and relationships.
8
+
Query and manipulate Forest Admin data as if it were a database, with an abstraction layer that handles authentication, filtering, and relationships.
9
9
10
10
## Available Tools
11
11
@@ -14,12 +14,16 @@ Query Forest Admin data as if it were a database, with an abstraction layer that
14
14
|`describeCollection`| Get collection schema (fields, types, operators, relations) |
15
15
|`list`| Query records from a collection |
16
16
|`listRelated`| Query records from a one-to-many or many-to-many relation |
17
+
|`create`| Create a new record in a collection |
18
+
|`update`| Update an existing record by ID |
19
+
|`delete`| Delete one or more records by IDs |
17
20
18
21
## Workflow
19
22
20
-
1.**Always start with `describeCollection`** to understand the collection structure before querying
23
+
1.**Always start with `describeCollection`** to understand the collection structure before querying or modifying data
21
24
2. Use `list` for direct collection queries
22
25
3. Use `listRelated` to traverse relationships (e.g., "orders of user 123")
26
+
4. Use `create`, `update`, `delete` for data modifications
0 commit comments