superproductivity-mcp 1.2.6.dev4__tar.gz → 1.2.6.dev6__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.
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/build.yml +1 -1
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/publish-dev.yml +1 -1
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/release.yml +3 -3
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/PKG-INFO +2 -1
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/build-plugin.sh +2 -2
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/plugin/manifest.json +1 -1
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/pyproject.toml +2 -1
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/uv.lock +18 -4
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/publish.yml +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/version-gate.yml +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.gitignore +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.mcp.json.example +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.mise.toml +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/LICENSE.txt +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/README.md +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/plans/2026-04-29-packaging-distribution.md +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/plans/2026-04-30-gitflow-ci.md +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/specs/2026-04-29-gitflow-ci-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/specs/2026-04-29-packaging-distribution-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/plugin/index.html +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/plugin/plugin.js +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/__main__.py +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/server.py +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/tests/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/tests/test_mcp_logic.py +0 -0
{superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/build.yml
RENAMED
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
- name: Verify zip exists
|
|
17
17
|
run: |
|
|
18
18
|
VERSION=$(python3 -c "import json; print(json.load(open('plugin/manifest.json'))['version'])")
|
|
19
|
-
ZIP="plugin/plugin-v${VERSION}.zip"
|
|
19
|
+
ZIP="plugin/superproductivity-mcp-plugin-v${VERSION}.zip"
|
|
20
20
|
test -f "$ZIP" && echo "OK: $ZIP" || (echo "ERROR: $ZIP not found" && exit 1)
|
|
21
21
|
|
|
22
22
|
build-mcp:
|
|
@@ -67,7 +67,7 @@ jobs:
|
|
|
67
67
|
run: |
|
|
68
68
|
VERSION="${{ steps.version.outputs.version }}"
|
|
69
69
|
TAG="v${VERSION}"
|
|
70
|
-
ZIP="plugin/plugin-v${VERSION}.zip"
|
|
70
|
+
ZIP="plugin/superproductivity-mcp-plugin-v${VERSION}.zip"
|
|
71
71
|
|
|
72
72
|
if gh release view "$TAG" &>/dev/null; then
|
|
73
73
|
echo "Release $TAG already exists — updating asset"
|
{superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/release.yml
RENAMED
|
@@ -27,8 +27,8 @@ jobs:
|
|
|
27
27
|
- name: Upload build artifact
|
|
28
28
|
uses: actions/upload-artifact@v4
|
|
29
29
|
with:
|
|
30
|
-
name: plugin-v${{ steps.version.outputs.version }}
|
|
31
|
-
path: plugin/plugin-v${{ steps.version.outputs.version }}.zip
|
|
30
|
+
name: superproductivity-mcp-plugin-v${{ steps.version.outputs.version }}
|
|
31
|
+
path: plugin/superproductivity-mcp-plugin-v${{ steps.version.outputs.version }}.zip
|
|
32
32
|
retention-days: 90
|
|
33
33
|
|
|
34
34
|
- name: Publish GitHub Release
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
GH_TOKEN: ${{ github.token }}
|
|
37
37
|
run: |
|
|
38
38
|
TAG="${{ steps.version.outputs.tag }}"
|
|
39
|
-
ZIP="plugin/plugin-v${{ steps.version.outputs.version }}.zip"
|
|
39
|
+
ZIP="plugin/superproductivity-mcp-plugin-v${{ steps.version.outputs.version }}.zip"
|
|
40
40
|
|
|
41
41
|
if gh release view "$TAG" &>/dev/null; then
|
|
42
42
|
echo "Release $TAG already exists — updating asset"
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: superproductivity-mcp
|
|
3
|
-
Version: 1.2.6.
|
|
3
|
+
Version: 1.2.6.dev6
|
|
4
4
|
Summary: Super Productivity MCP server for Claude Desktop integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/ben-elliot-nice/superproductivity-mcp
|
|
6
6
|
License-File: LICENSE.txt
|
|
7
7
|
Requires-Python: >=3.10
|
|
8
|
+
Requires-Dist: httpx<0.28.0
|
|
8
9
|
Requires-Dist: mcp>=1.0.0
|
|
9
10
|
Description-Content-Type: text/markdown
|
|
10
11
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
# Build the Super Productivity plugin zip for upload.
|
|
3
3
|
# Usage: ./build-plugin.sh
|
|
4
|
-
# Output: plugin/plugin-v<version>.zip (version read from plugin/manifest.json)
|
|
4
|
+
# Output: plugin/superproductivity-mcp-plugin-v<version>.zip (version read from plugin/manifest.json)
|
|
5
5
|
|
|
6
6
|
set -euo pipefail
|
|
7
7
|
|
|
@@ -10,7 +10,7 @@ PLUGIN_DIR="$SCRIPT_DIR/plugin"
|
|
|
10
10
|
MANIFEST="$PLUGIN_DIR/manifest.json"
|
|
11
11
|
|
|
12
12
|
VERSION=$(python3 -c "import json,sys; print(json.load(open(sys.argv[1]))['version'])" "$MANIFEST")
|
|
13
|
-
OUT="$PLUGIN_DIR/plugin-v${VERSION}.zip"
|
|
13
|
+
OUT="$PLUGIN_DIR/superproductivity-mcp-plugin-v${VERSION}.zip"
|
|
14
14
|
|
|
15
15
|
echo "Building plugin v${VERSION}..."
|
|
16
16
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "sp-mcp-bridge",
|
|
3
3
|
"name": "MCP Bridge",
|
|
4
4
|
"description": "Bridge between Super Productivity and MCP (Model Context Protocol) servers for Claude Desktop integration",
|
|
5
|
-
"version": "1.2.6.
|
|
5
|
+
"version": "1.2.6.dev6",
|
|
6
6
|
"manifestVersion": 1,
|
|
7
7
|
"author": "Super Productivity Team",
|
|
8
8
|
"homepage": "https://github.com/johannesjo/super-productivity",
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "superproductivity-mcp"
|
|
3
|
-
version = "1.2.6.
|
|
3
|
+
version = "1.2.6.dev6"
|
|
4
4
|
description = "Super Productivity MCP server for Claude Desktop integration"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
7
|
dependencies = [
|
|
8
8
|
"mcp>=1.0.0",
|
|
9
|
+
"httpx<0.28.0",
|
|
9
10
|
]
|
|
10
11
|
|
|
11
12
|
[project.scripts]
|
|
@@ -242,17 +242,18 @@ wheels = [
|
|
|
242
242
|
|
|
243
243
|
[[package]]
|
|
244
244
|
name = "httpx"
|
|
245
|
-
version = "0.
|
|
245
|
+
version = "0.27.2"
|
|
246
246
|
source = { registry = "https://pypi.org/simple" }
|
|
247
247
|
dependencies = [
|
|
248
248
|
{ name = "anyio" },
|
|
249
249
|
{ name = "certifi" },
|
|
250
250
|
{ name = "httpcore" },
|
|
251
251
|
{ name = "idna" },
|
|
252
|
+
{ name = "sniffio" },
|
|
252
253
|
]
|
|
253
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
254
|
+
sdist = { url = "https://files.pythonhosted.org/packages/78/82/08f8c936781f67d9e6b9eeb8a0c8b4e406136ea4c3d1f89a5db71d42e0e6/httpx-0.27.2.tar.gz", hash = "sha256:f7c2be1d2f3c3c3160d441802406b206c2b76f5947b11115e6df10c6c65e66c2", size = 144189, upload-time = "2024-08-27T12:54:01.334Z" }
|
|
254
255
|
wheels = [
|
|
255
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
256
|
+
{ url = "https://files.pythonhosted.org/packages/56/95/9377bcb415797e44274b51d46e3249eba641711cf3348050f76ee7b15ffc/httpx-0.27.2-py3-none-any.whl", hash = "sha256:7bb2708e112d8fdd7829cd4243970f0c223274051cb35ee80c03301ee29a3df0", size = 76395, upload-time = "2024-08-27T12:53:59.653Z" },
|
|
256
257
|
]
|
|
257
258
|
|
|
258
259
|
[[package]]
|
|
@@ -726,6 +727,15 @@ wheels = [
|
|
|
726
727
|
{ url = "https://files.pythonhosted.org/packages/d1/b7/b95708304cd49b7b6f82fdd039f1748b66ec2b21d6a45180910802f1abf1/rpds_py-0.30.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ac37f9f516c51e5753f27dfdef11a88330f04de2d564be3991384b2f3535d02e", size = 562191, upload-time = "2025-11-30T20:24:36.853Z" },
|
|
727
728
|
]
|
|
728
729
|
|
|
730
|
+
[[package]]
|
|
731
|
+
name = "sniffio"
|
|
732
|
+
version = "1.3.1"
|
|
733
|
+
source = { registry = "https://pypi.org/simple" }
|
|
734
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" }
|
|
735
|
+
wheels = [
|
|
736
|
+
{ url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" },
|
|
737
|
+
]
|
|
738
|
+
|
|
729
739
|
[[package]]
|
|
730
740
|
name = "sse-starlette"
|
|
731
741
|
version = "3.3.4"
|
|
@@ -757,6 +767,7 @@ name = "superproductivity-mcp"
|
|
|
757
767
|
version = "1.2.6"
|
|
758
768
|
source = { editable = "." }
|
|
759
769
|
dependencies = [
|
|
770
|
+
{ name = "httpx" },
|
|
760
771
|
{ name = "mcp" },
|
|
761
772
|
]
|
|
762
773
|
|
|
@@ -766,7 +777,10 @@ dev = [
|
|
|
766
777
|
]
|
|
767
778
|
|
|
768
779
|
[package.metadata]
|
|
769
|
-
requires-dist = [
|
|
780
|
+
requires-dist = [
|
|
781
|
+
{ name = "httpx", specifier = "<0.28.0" },
|
|
782
|
+
{ name = "mcp", specifier = ">=1.0.0" },
|
|
783
|
+
]
|
|
770
784
|
|
|
771
785
|
[package.metadata.requires-dev]
|
|
772
786
|
dev = [{ name = "pytest", specifier = ">=9.0.3" }]
|
{superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/publish.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{superproductivity_mcp-1.2.6.dev4 → superproductivity_mcp-1.2.6.dev6}/tests/test_mcp_logic.py
RENAMED
|
File without changes
|