-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathserver.json
More file actions
88 lines (88 loc) · 2.45 KB
/
server.json
File metadata and controls
88 lines (88 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.verygoodplugins/mcp-toggl",
"title": "MCP Toggl",
"description": "Toggl Track time tracking with intelligent caching and reporting",
"version": "1.1.0",
"websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry",
"repository": {
"url": "https://github.com/verygoodplugins/mcp-toggl",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@verygoodplugins/mcp-toggl",
"version": "1.1.0",
"transport": {
"type": "stdio"
}
}
],
"tools": [
{
"name": "toggl_check_auth",
"description": "Verify Toggl API connectivity and authentication"
},
{
"name": "toggl_get_time_entries",
"description": "Get time entries with optional date range filters"
},
{
"name": "toggl_get_current_entry",
"description": "Get the currently running time entry"
},
{
"name": "toggl_start_timer",
"description": "Start a new time entry timer"
},
{
"name": "toggl_stop_timer",
"description": "Stop the currently running timer"
},
{
"name": "toggl_daily_report",
"description": "Generate a daily report with project and workspace breakdowns"
},
{
"name": "toggl_weekly_report",
"description": "Generate a weekly report with daily and project breakdowns"
},
{
"name": "toggl_project_summary",
"description": "Get total hours per project for a date range"
},
{
"name": "toggl_workspace_summary",
"description": "Get total hours per workspace for a date range"
},
{
"name": "toggl_list_workspaces",
"description": "List all available workspaces"
},
{
"name": "toggl_list_projects",
"description": "List projects in a workspace"
},
{
"name": "toggl_list_clients",
"description": "List clients in a workspace"
},
{
"name": "toggl_warm_cache",
"description": "Pre-fetch workspace, project, client, and tag data"
},
{
"name": "toggl_cache_stats",
"description": "Get cache statistics and performance metrics"
},
{
"name": "toggl_clear_cache",
"description": "Clear all cached data"
},
{
"name": "toggl_get_timeline",
"description": "Get Toggl Desktop activity timeline summaries and optional raw events"
}
]
}