@focus-pocus/mcp-server 0.1.1 → 0.1.2
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 +4 -4
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @focus-pocus/mcp-server
|
|
2
2
|
|
|
3
|
-
[Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for [Focus Pocus](https://
|
|
3
|
+
[Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for [Focus Pocus](https://focuspocusapp.com) — manage tasks, track work, and monitor goals from any MCP client.
|
|
4
4
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ In Focus Pocus, go to **Settings > API Access** and create a token. Copy it —
|
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
claude mcp add focus-pocus \
|
|
17
|
-
-e FOCUS_POCUS_API_URL=https://
|
|
17
|
+
-e FOCUS_POCUS_API_URL=https://api.focuspocusapp.com \
|
|
18
18
|
-e FOCUS_POCUS_TOKEN=fp_pat_your_token_here \
|
|
19
19
|
-- npx -y @focus-pocus/mcp-server
|
|
20
20
|
```
|
|
@@ -30,7 +30,7 @@ Add to your MCP settings file (e.g. `~/.claude/mcp.json` or `claude_desktop_conf
|
|
|
30
30
|
"command": "npx",
|
|
31
31
|
"args": ["-y", "@focus-pocus/mcp-server"],
|
|
32
32
|
"env": {
|
|
33
|
-
"FOCUS_POCUS_API_URL": "https://
|
|
33
|
+
"FOCUS_POCUS_API_URL": "https://api.focuspocusapp.com",
|
|
34
34
|
"FOCUS_POCUS_TOKEN": "fp_pat_your_token_here"
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -45,7 +45,7 @@ Add to your MCP settings file (e.g. `~/.claude/mcp.json` or `claude_desktop_conf
|
|
|
45
45
|
| Variable | Required | Description |
|
|
46
46
|
|----------|----------|-------------|
|
|
47
47
|
| `FOCUS_POCUS_TOKEN` | Yes | Personal Access Token from Settings > API Access |
|
|
48
|
-
| `FOCUS_POCUS_API_URL` | Yes | Focus Pocus API URL (`https://
|
|
48
|
+
| `FOCUS_POCUS_API_URL` | Yes | Focus Pocus API URL (`https://api.focuspocusapp.com` or self-hosted) |
|
|
49
49
|
|
|
50
50
|
## Available Tools (22)
|
|
51
51
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@focus-pocus/mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for Focus Pocus — manage tasks, track work, and monitor goals from Claude Code
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Model Context Protocol (MCP) server for Focus Pocus — manage tasks, track work, and monitor goals from Claude Code or any MCP-compatible client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Focus Pocus",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://focuspocusapp.com",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/Zubin-Teherani/focus-pocus.git",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"node": ">=18.0.0"
|
|
31
31
|
},
|
|
32
32
|
"bin": {
|
|
33
|
-
"
|
|
33
|
+
"mcp-server": "dist/index.js",
|
|
34
|
+
"focus-pocus-mcp-server": "dist/index.js"
|
|
34
35
|
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"build": "tsc",
|