Skip to content

Commit 3081dd1

Browse files
docs: add tag management tools to README
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7d435d4 commit 3081dd1

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,44 @@ List projects in a workspace.
191191
#### `toggl_list_clients`
192192
List clients in a workspace.
193193

194+
### Tag Management
195+
196+
#### `toggl_list_tags`
197+
List all tags in a workspace.
198+
```json
199+
{
200+
"workspace_id": 123456
201+
}
202+
```
203+
204+
#### `toggl_create_tag`
205+
Create a new tag.
206+
```json
207+
{
208+
"name": "billable",
209+
"workspace_id": 123456
210+
}
211+
```
212+
213+
#### `toggl_update_tag`
214+
Rename an existing tag.
215+
```json
216+
{
217+
"tag_id": 789,
218+
"name": "new-name",
219+
"workspace_id": 123456
220+
}
221+
```
222+
223+
#### `toggl_delete_tag`
224+
Delete a tag from a workspace.
225+
```json
226+
{
227+
"tag_id": 789,
228+
"workspace_id": 123456
229+
}
230+
```
231+
194232
### Cache Management
195233

196234
#### `toggl_warm_cache`

0 commit comments

Comments
 (0)