superproductivity-mcp 1.2.6.dev11__tar.gz → 2.0.0.dev17__tar.gz

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.
Files changed (33) hide show
  1. superproductivity_mcp-2.0.0.dev17/PKG-INFO +214 -0
  2. superproductivity_mcp-2.0.0.dev17/README.md +204 -0
  3. superproductivity_mcp-2.0.0.dev17/docs/superpowers/plans/2026-06-16-http-ipc.md +1105 -0
  4. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/plugin/manifest.json +9 -9
  5. superproductivity_mcp-2.0.0.dev17/plugin/plugin.js +383 -0
  6. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/pyproject.toml +1 -2
  7. superproductivity_mcp-2.0.0.dev17/src/superproductivity_mcp/__init__.py +1 -0
  8. superproductivity_mcp-2.0.0.dev17/src/superproductivity_mcp/bridge.py +169 -0
  9. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/src/superproductivity_mcp/server.py +42 -85
  10. superproductivity_mcp-2.0.0.dev17/tests/test_bridge.py +158 -0
  11. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/tests/test_mcp_logic.py +8 -0
  12. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/uv.lock +2 -6
  13. superproductivity_mcp-1.2.6.dev11/PKG-INFO +0 -165
  14. superproductivity_mcp-1.2.6.dev11/README.md +0 -154
  15. superproductivity_mcp-1.2.6.dev11/plugin/plugin.js +0 -999
  16. superproductivity_mcp-1.2.6.dev11/src/superproductivity_mcp/__init__.py +0 -1
  17. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.github/workflows/build.yml +0 -0
  18. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.github/workflows/publish-dev.yml +0 -0
  19. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.github/workflows/publish.yml +0 -0
  20. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.github/workflows/release.yml +0 -0
  21. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.github/workflows/version-gate.yml +0 -0
  22. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.gitignore +0 -0
  23. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.mcp.json.example +0 -0
  24. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/.mise.toml +0 -0
  25. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/LICENSE.txt +0 -0
  26. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/build-plugin.sh +0 -0
  27. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/docs/superpowers/plans/2026-04-29-packaging-distribution.md +0 -0
  28. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/docs/superpowers/plans/2026-04-30-gitflow-ci.md +0 -0
  29. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/docs/superpowers/specs/2026-04-29-gitflow-ci-design.md +0 -0
  30. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/docs/superpowers/specs/2026-04-29-packaging-distribution-design.md +0 -0
  31. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/plugin/index.html +0 -0
  32. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/src/superproductivity_mcp/__main__.py +0 -0
  33. {superproductivity_mcp-1.2.6.dev11 → superproductivity_mcp-2.0.0.dev17}/tests/__init__.py +0 -0
@@ -0,0 +1,214 @@
1
+ Metadata-Version: 2.4
2
+ Name: superproductivity-mcp
3
+ Version: 2.0.0.dev17
4
+ Summary: Super Productivity MCP server for Claude Desktop integration
5
+ Project-URL: Homepage, https://github.com/ben-elliot-nice/superproductivity-mcp
6
+ License-File: LICENSE.txt
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: mcp>=1.0.0
9
+ Description-Content-Type: text/markdown
10
+
11
+ # superproductivity-mcp
12
+
13
+ Bridge between [Super Productivity](https://github.com/johannesjo/super-productivity/) and Claude Desktop via the Model Context Protocol (MCP). Lets Claude create, update, and query tasks, projects, and tags directly in Super Productivity.
14
+
15
+ > **Backup your Super Productivity data before use.**
16
+
17
+ ---
18
+
19
+ ## Requirements
20
+
21
+ - Super Productivity 14.0.0 or higher
22
+ - Claude Desktop
23
+ - [uv](https://docs.astral.sh/uv/) (`brew install uv` on macOS)
24
+
25
+ ---
26
+
27
+ ## Installation
28
+
29
+ ### 1. Install the MCP server
30
+
31
+ Add to your Claude Desktop config:
32
+
33
+ - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
34
+ - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
35
+
36
+ ```json
37
+ {
38
+ "mcpServers": {
39
+ "super-productivity": {
40
+ "command": "uvx",
41
+ "args": ["superproductivity-mcp"]
42
+ }
43
+ }
44
+ }
45
+ ```
46
+
47
+ `uvx` fetches the latest version from PyPI automatically — no Python install or repo clone required.
48
+
49
+ ### 2. Install the plugin
50
+
51
+ Download `superproductivity-mcp-plugin-v<version>.zip` from the [latest release](https://github.com/ben-elliot-nice/superproductivity-mcp/releases/latest), then in Super Productivity:
52
+
53
+ **Settings → Plugins → Upload Plugin**
54
+
55
+ The plugin dashboard includes a **Claude Desktop** card with a copy-pastable config snippet pinned to your installed plugin version.
56
+
57
+ ### 3. Restart Claude Desktop
58
+
59
+ ---
60
+
61
+ ## Usage
62
+
63
+ ### Tasks
64
+
65
+ ```
66
+ Create a task to review the quarterly budget #finance
67
+ Show me all my open tasks
68
+ Mark the budget review task as complete
69
+ Update the task 'Meeting prep' with notes about the agenda
70
+ ```
71
+
72
+ ### Subtasks
73
+
74
+ ```
75
+ Create subtasks under 'Website Redesign': design mockups, build frontend, write tests
76
+ ```
77
+
78
+ ### Projects & Tags
79
+
80
+ ```
81
+ Create a new project called 'Website Redesign'
82
+ Show me all tasks in the Infrastructure project
83
+ Get all tags
84
+ ```
85
+
86
+ ### Scheduling
87
+
88
+ ```
89
+ Create a task 'Send invoice' due tomorrow with a 30 minute estimate
90
+ Show me everything due this week
91
+ ```
92
+
93
+ ---
94
+
95
+ ## Tools
96
+
97
+ | Tool | Description |
98
+ |------|-------------|
99
+ | `get_tasks` | Fetch tasks — filter by project, tag, date, search, today |
100
+ | `create_task` | Create a task with optional project, tags, subtask nesting, due date, time estimate |
101
+ | `create_tasks` | Batch create multiple tasks in one round trip |
102
+ | `update_task` | Update title, notes, tags, time, due date, done state |
103
+ | `complete_task` | Mark a task done |
104
+ | `get_subtasks` | Get subtasks of a parent task by partial name |
105
+ | `get_tasks_by_tag` | Filter tasks by partial tag name |
106
+ | `get_completed_tasks` | Completed tasks, optionally filtered by recency |
107
+ | `convert_to_subtask` | Move a task under a parent |
108
+ | `get_projects` | List all projects |
109
+ | `create_project` | Create a project |
110
+ | `get_tags` | List all tags |
111
+ | `create_tag` | Create a tag |
112
+ | `show_notification` | Show a notification in Super Productivity |
113
+ | `debug_directories` | Show MCP data directory paths |
114
+ | `explain` | Get usage hints for tools, filters, or scheduling syntax |
115
+
116
+ ---
117
+
118
+ ## Communication
119
+
120
+ The plugin uses file-based IPC. Commands and responses are exchanged through:
121
+
122
+ | Platform | Path |
123
+ |----------|------|
124
+ | macOS / Linux | `~/.local/share/super-productivity-mcp/` |
125
+ | Windows | `%APPDATA%\super-productivity-mcp\` |
126
+
127
+ ---
128
+
129
+ ## Pinning to a plugin version
130
+
131
+ The plugin dashboard shows a copy-pastable config with the exact version pinned:
132
+
133
+ ```json
134
+ {
135
+ "mcpServers": {
136
+ "super-productivity": {
137
+ "command": "uvx",
138
+ "args": ["superproductivity-mcp==1.3.0"]
139
+ }
140
+ }
141
+ }
142
+ ```
143
+
144
+ This ensures the MCP server version matches your installed plugin exactly.
145
+
146
+ ---
147
+
148
+ ## Contributing
149
+
150
+ Pull requests welcome. Open an issue first for significant changes.
151
+
152
+ ### Local setup
153
+
154
+ Requires [mise](https://mise.jdx.dev/) and [uv](https://docs.astral.sh/uv/):
155
+
156
+ ```bash
157
+ brew install mise uv
158
+ mise install # installs Python runtime
159
+ uv sync # installs dependencies into .venv
160
+ ```
161
+
162
+ Copy `.mcp.json.example` to `.mcp.json` and update the path:
163
+
164
+ ```bash
165
+ cp .mcp.json.example .mcp.json
166
+ ```
167
+
168
+ ### Running locally
169
+
170
+ ```bash
171
+ uv run superproductivity-mcp
172
+ ```
173
+
174
+ Or let Claude Code pick it up via `.mcp.json`.
175
+
176
+ ### Running tests
177
+
178
+ ```bash
179
+ uv run pytest
180
+ ```
181
+
182
+ ### Repo structure
183
+
184
+ ```
185
+ src/superproductivity_mcp/ # MCP server Python package
186
+ server.py # All tool logic
187
+ __init__.py # Version
188
+ __main__.py # Entry point for python -m
189
+ plugin/ # Super Productivity plugin
190
+ plugin.js # Plugin logic
191
+ index.html # Dashboard UI
192
+ manifest.json # Plugin manifest
193
+ build-plugin.sh # Builds the plugin zip (injects version into UI)
194
+ ```
195
+
196
+ ### Branching
197
+
198
+ - `main` — stable releases, protected (PR + CI gates required)
199
+ - `dev` — integration branch, direct push allowed
200
+
201
+ Pre-releases publish to PyPI automatically on `[publish]` commits or pre-release tags from `dev`.
202
+
203
+ ---
204
+
205
+ ## Troubleshooting
206
+
207
+ **Plugin not loading**
208
+ - Super Productivity 14.0.0+ required
209
+ - Plugin permissions must include `nodeExecution`
210
+
211
+ **Commands not working**
212
+ - Verify both the plugin and MCP server are running
213
+ - Check `mcp_server.log` in the data directory
214
+ - Check the plugin dashboard for connection status and activity logs
@@ -0,0 +1,204 @@
1
+ # superproductivity-mcp
2
+
3
+ Bridge between [Super Productivity](https://github.com/johannesjo/super-productivity/) and Claude Desktop via the Model Context Protocol (MCP). Lets Claude create, update, and query tasks, projects, and tags directly in Super Productivity.
4
+
5
+ > **Backup your Super Productivity data before use.**
6
+
7
+ ---
8
+
9
+ ## Requirements
10
+
11
+ - Super Productivity 14.0.0 or higher
12
+ - Claude Desktop
13
+ - [uv](https://docs.astral.sh/uv/) (`brew install uv` on macOS)
14
+
15
+ ---
16
+
17
+ ## Installation
18
+
19
+ ### 1. Install the MCP server
20
+
21
+ Add to your Claude Desktop config:
22
+
23
+ - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
24
+ - Windows: `%APPDATA%\Claude\claude_desktop_config.json`
25
+
26
+ ```json
27
+ {
28
+ "mcpServers": {
29
+ "super-productivity": {
30
+ "command": "uvx",
31
+ "args": ["superproductivity-mcp"]
32
+ }
33
+ }
34
+ }
35
+ ```
36
+
37
+ `uvx` fetches the latest version from PyPI automatically — no Python install or repo clone required.
38
+
39
+ ### 2. Install the plugin
40
+
41
+ Download `superproductivity-mcp-plugin-v<version>.zip` from the [latest release](https://github.com/ben-elliot-nice/superproductivity-mcp/releases/latest), then in Super Productivity:
42
+
43
+ **Settings → Plugins → Upload Plugin**
44
+
45
+ The plugin dashboard includes a **Claude Desktop** card with a copy-pastable config snippet pinned to your installed plugin version.
46
+
47
+ ### 3. Restart Claude Desktop
48
+
49
+ ---
50
+
51
+ ## Usage
52
+
53
+ ### Tasks
54
+
55
+ ```
56
+ Create a task to review the quarterly budget #finance
57
+ Show me all my open tasks
58
+ Mark the budget review task as complete
59
+ Update the task 'Meeting prep' with notes about the agenda
60
+ ```
61
+
62
+ ### Subtasks
63
+
64
+ ```
65
+ Create subtasks under 'Website Redesign': design mockups, build frontend, write tests
66
+ ```
67
+
68
+ ### Projects & Tags
69
+
70
+ ```
71
+ Create a new project called 'Website Redesign'
72
+ Show me all tasks in the Infrastructure project
73
+ Get all tags
74
+ ```
75
+
76
+ ### Scheduling
77
+
78
+ ```
79
+ Create a task 'Send invoice' due tomorrow with a 30 minute estimate
80
+ Show me everything due this week
81
+ ```
82
+
83
+ ---
84
+
85
+ ## Tools
86
+
87
+ | Tool | Description |
88
+ |------|-------------|
89
+ | `get_tasks` | Fetch tasks — filter by project, tag, date, search, today |
90
+ | `create_task` | Create a task with optional project, tags, subtask nesting, due date, time estimate |
91
+ | `create_tasks` | Batch create multiple tasks in one round trip |
92
+ | `update_task` | Update title, notes, tags, time, due date, done state |
93
+ | `complete_task` | Mark a task done |
94
+ | `get_subtasks` | Get subtasks of a parent task by partial name |
95
+ | `get_tasks_by_tag` | Filter tasks by partial tag name |
96
+ | `get_completed_tasks` | Completed tasks, optionally filtered by recency |
97
+ | `convert_to_subtask` | Move a task under a parent |
98
+ | `get_projects` | List all projects |
99
+ | `create_project` | Create a project |
100
+ | `get_tags` | List all tags |
101
+ | `create_tag` | Create a tag |
102
+ | `show_notification` | Show a notification in Super Productivity |
103
+ | `debug_directories` | Show MCP data directory paths |
104
+ | `explain` | Get usage hints for tools, filters, or scheduling syntax |
105
+
106
+ ---
107
+
108
+ ## Communication
109
+
110
+ The plugin uses file-based IPC. Commands and responses are exchanged through:
111
+
112
+ | Platform | Path |
113
+ |----------|------|
114
+ | macOS / Linux | `~/.local/share/super-productivity-mcp/` |
115
+ | Windows | `%APPDATA%\super-productivity-mcp\` |
116
+
117
+ ---
118
+
119
+ ## Pinning to a plugin version
120
+
121
+ The plugin dashboard shows a copy-pastable config with the exact version pinned:
122
+
123
+ ```json
124
+ {
125
+ "mcpServers": {
126
+ "super-productivity": {
127
+ "command": "uvx",
128
+ "args": ["superproductivity-mcp==1.3.0"]
129
+ }
130
+ }
131
+ }
132
+ ```
133
+
134
+ This ensures the MCP server version matches your installed plugin exactly.
135
+
136
+ ---
137
+
138
+ ## Contributing
139
+
140
+ Pull requests welcome. Open an issue first for significant changes.
141
+
142
+ ### Local setup
143
+
144
+ Requires [mise](https://mise.jdx.dev/) and [uv](https://docs.astral.sh/uv/):
145
+
146
+ ```bash
147
+ brew install mise uv
148
+ mise install # installs Python runtime
149
+ uv sync # installs dependencies into .venv
150
+ ```
151
+
152
+ Copy `.mcp.json.example` to `.mcp.json` and update the path:
153
+
154
+ ```bash
155
+ cp .mcp.json.example .mcp.json
156
+ ```
157
+
158
+ ### Running locally
159
+
160
+ ```bash
161
+ uv run superproductivity-mcp
162
+ ```
163
+
164
+ Or let Claude Code pick it up via `.mcp.json`.
165
+
166
+ ### Running tests
167
+
168
+ ```bash
169
+ uv run pytest
170
+ ```
171
+
172
+ ### Repo structure
173
+
174
+ ```
175
+ src/superproductivity_mcp/ # MCP server Python package
176
+ server.py # All tool logic
177
+ __init__.py # Version
178
+ __main__.py # Entry point for python -m
179
+ plugin/ # Super Productivity plugin
180
+ plugin.js # Plugin logic
181
+ index.html # Dashboard UI
182
+ manifest.json # Plugin manifest
183
+ build-plugin.sh # Builds the plugin zip (injects version into UI)
184
+ ```
185
+
186
+ ### Branching
187
+
188
+ - `main` — stable releases, protected (PR + CI gates required)
189
+ - `dev` — integration branch, direct push allowed
190
+
191
+ Pre-releases publish to PyPI automatically on `[publish]` commits or pre-release tags from `dev`.
192
+
193
+ ---
194
+
195
+ ## Troubleshooting
196
+
197
+ **Plugin not loading**
198
+ - Super Productivity 14.0.0+ required
199
+ - Plugin permissions must include `nodeExecution`
200
+
201
+ **Commands not working**
202
+ - Verify both the plugin and MCP server are running
203
+ - Check `mcp_server.log` in the data directory
204
+ - Check the plugin dashboard for connection status and activity logs