@togglhq/mcp 1.5.21 → 1.5.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/build/index.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
A local MCP (Model Context Protocol) server that connects to the Toggl 2.0 API. Works with any MCP client including Claude Code and Claude Desktop.
|
|
4
4
|
|
|
5
|
+
## One-click install
|
|
6
|
+
|
|
7
|
+
[](https://vscode.dev/redirect/mcp/install?name=toggl&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40togglhq%2Fmcp%22%5D%2C%22env%22%3A%7B%7D%7D)
|
|
8
|
+
[](https://insiders.vscode.dev/redirect/mcp/install?name=toggl&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40togglhq%2Fmcp%22%5D%2C%22env%22%3A%7B%7D%7D&quality=insiders)
|
|
9
|
+
[](cursor://anysphere.cursor-deeplink/mcp/install?name=toggl&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0b2dnbGhxL21jcCJdfQ==)
|
|
10
|
+
|
|
11
|
+
Cursor install link (copy or open in Cursor):
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
cursor://anysphere.cursor-deeplink/mcp/install?name=toggl&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0b2dnbGhxL21jcCJdfQ==
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
After install, run `npx @togglhq/mcp auth` once to sign in. For Claude Code and Claude Desktop, see **Add to your MCP client** below.
|
|
18
|
+
|
|
5
19
|
## Install
|
|
6
20
|
|
|
7
21
|
```bash
|
package/build/index.js
CHANGED
|
@@ -45953,7 +45953,7 @@ import_main.default.config({
|
|
|
45953
45953
|
quiet: true,
|
|
45954
45954
|
ignore: ["MISSING_ENV_FILE"]
|
|
45955
45955
|
});
|
|
45956
|
-
const packageVersion = "1.5.
|
|
45956
|
+
const packageVersion = "1.5.22";
|
|
45957
45957
|
function resolvePublicUrls() {
|
|
45958
45958
|
return {
|
|
45959
45959
|
focusApiUrl: process.env.TOGGL_FOCUS_API_URL ?? "https://focus.toggl.com",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@togglhq/mcp",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.22",
|
|
4
4
|
"description": "Toggl 2.0 MCP server for Claude Code, Claude Desktop, and other MCP clients.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -56,5 +56,6 @@
|
|
|
56
56
|
"@types/node": "22.19.11",
|
|
57
57
|
"tsdown": "0.21.8",
|
|
58
58
|
"vitest": "3.2.4"
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"mcpName": "io.github.toggl/toggl-mcp"
|
|
60
61
|
}
|