superproductivity-mcp 1.2.6.dev5__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.dev5 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/build.yml +1 -1
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/publish-dev.yml +1 -1
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/release.yml +3 -3
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/PKG-INFO +1 -1
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/build-plugin.sh +2 -2
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/plugin/manifest.json +1 -1
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/pyproject.toml +1 -1
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/publish.yml +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.github/workflows/version-gate.yml +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.gitignore +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.mcp.json.example +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/.mise.toml +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/LICENSE.txt +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/README.md +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/plans/2026-04-29-packaging-distribution.md +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/plans/2026-04-30-gitflow-ci.md +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/specs/2026-04-29-gitflow-ci-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/docs/superpowers/specs/2026-04-29-packaging-distribution-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/plugin/index.html +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/plugin/plugin.js +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/__main__.py +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/src/superproductivity_mcp/server.py +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/tests/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/tests/test_mcp_logic.py +0 -0
- {superproductivity_mcp-1.2.6.dev5 → superproductivity_mcp-1.2.6.dev6}/uv.lock +0 -0
{superproductivity_mcp-1.2.6.dev5 → 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.dev5 → 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,6 +1,6 @@
|
|
|
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
|
|
@@ -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",
|
{superproductivity_mcp-1.2.6.dev5 → 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.dev5 → superproductivity_mcp-1.2.6.dev6}/tests/test_mcp_logic.py
RENAMED
|
File without changes
|
|
File without changes
|