superproductivity-mcp 1.2.6.dev2__tar.gz → 1.2.6.dev4__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/.github/workflows/publish-dev.yml +81 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/PKG-INFO +1 -1
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/plugin/manifest.json +1 -1
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/pyproject.toml +1 -1
- superproductivity_mcp-1.2.6.dev2/.github/workflows/publish-dev.yml +0 -53
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/build.yml +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/publish.yml +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/release.yml +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/version-gate.yml +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.gitignore +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.mcp.json.example +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.mise.toml +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/LICENSE.txt +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/README.md +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/build-plugin.sh +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/docs/superpowers/plans/2026-04-29-packaging-distribution.md +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/docs/superpowers/plans/2026-04-30-gitflow-ci.md +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/docs/superpowers/specs/2026-04-29-gitflow-ci-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/docs/superpowers/specs/2026-04-29-packaging-distribution-design.md +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/plugin/index.html +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/plugin/plugin.js +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/src/superproductivity_mcp/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/src/superproductivity_mcp/__main__.py +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/src/superproductivity_mcp/server.py +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/tests/__init__.py +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/tests/test_mcp_logic.py +0 -0
- {superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/uv.lock +0 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
name: Publish dev release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- dev
|
|
7
|
+
tags:
|
|
8
|
+
- "v*.dev*"
|
|
9
|
+
- "v*a*"
|
|
10
|
+
- "v*b*"
|
|
11
|
+
- "v*rc*"
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
publish-dev:
|
|
15
|
+
runs-on: ubuntu-latest
|
|
16
|
+
if: startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[publish]')
|
|
17
|
+
permissions:
|
|
18
|
+
contents: write
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
|
|
22
|
+
- uses: astral-sh/setup-uv@v5
|
|
23
|
+
with:
|
|
24
|
+
enable-cache: true
|
|
25
|
+
|
|
26
|
+
- name: Compute pre-release version
|
|
27
|
+
id: version
|
|
28
|
+
run: |
|
|
29
|
+
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
|
|
30
|
+
VERSION="${GITHUB_REF_NAME#v}"
|
|
31
|
+
echo "source=tag" >> "$GITHUB_OUTPUT"
|
|
32
|
+
else
|
|
33
|
+
CURRENT=$(python3 -c "
|
|
34
|
+
import re
|
|
35
|
+
m = re.search(r'version = \"([^\"]+)\"', open('pyproject.toml').read())
|
|
36
|
+
print(m.group(1))
|
|
37
|
+
")
|
|
38
|
+
VERSION="${CURRENT}.dev${{ github.run_number }}"
|
|
39
|
+
echo "source=keyword" >> "$GITHUB_OUTPUT"
|
|
40
|
+
fi
|
|
41
|
+
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
|
42
|
+
echo "Pre-release version: ${VERSION}"
|
|
43
|
+
|
|
44
|
+
- name: Patch pyproject.toml and manifest versions
|
|
45
|
+
env:
|
|
46
|
+
VERSION: ${{ steps.version.outputs.version }}
|
|
47
|
+
run: |
|
|
48
|
+
sed -i "s/^version = \".*\"/version = \"${VERSION}\"/" pyproject.toml
|
|
49
|
+
sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"${VERSION}\"/" plugin/manifest.json
|
|
50
|
+
echo "pyproject.toml: $(grep '^version' pyproject.toml)"
|
|
51
|
+
echo "manifest version: $(python3 -c 'import json; print(json.load(open("plugin/manifest.json"))["version"])')"
|
|
52
|
+
|
|
53
|
+
- name: Build plugin zip
|
|
54
|
+
run: bash build-plugin.sh
|
|
55
|
+
|
|
56
|
+
- name: Build MCP package
|
|
57
|
+
run: uv build
|
|
58
|
+
|
|
59
|
+
- name: Publish to PyPI
|
|
60
|
+
run: uv publish
|
|
61
|
+
env:
|
|
62
|
+
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}
|
|
63
|
+
|
|
64
|
+
- name: Publish GitHub pre-release
|
|
65
|
+
env:
|
|
66
|
+
GH_TOKEN: ${{ github.token }}
|
|
67
|
+
run: |
|
|
68
|
+
VERSION="${{ steps.version.outputs.version }}"
|
|
69
|
+
TAG="v${VERSION}"
|
|
70
|
+
ZIP="plugin/plugin-v${VERSION}.zip"
|
|
71
|
+
|
|
72
|
+
if gh release view "$TAG" &>/dev/null; then
|
|
73
|
+
echo "Release $TAG already exists — updating asset"
|
|
74
|
+
gh release upload "$TAG" "$ZIP" --clobber
|
|
75
|
+
else
|
|
76
|
+
echo "Creating pre-release $TAG"
|
|
77
|
+
gh release create "$TAG" "$ZIP" \
|
|
78
|
+
--title "Dev v${VERSION}" \
|
|
79
|
+
--notes "Pre-release dev build. Install MCP server: \`uvx --prerelease=allow superproductivity-mcp==${VERSION}\`" \
|
|
80
|
+
--prerelease
|
|
81
|
+
fi
|
|
@@ -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.dev4
|
|
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
|
|
@@ -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.dev4",
|
|
6
6
|
"manifestVersion": 1,
|
|
7
7
|
"author": "Super Productivity Team",
|
|
8
8
|
"homepage": "https://github.com/johannesjo/super-productivity",
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
name: Publish dev release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- dev
|
|
7
|
-
tags:
|
|
8
|
-
- "v*.dev*"
|
|
9
|
-
- "v*a*"
|
|
10
|
-
- "v*b*"
|
|
11
|
-
- "v*rc*"
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
publish-dev:
|
|
15
|
-
runs-on: ubuntu-latest
|
|
16
|
-
if: startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[publish]')
|
|
17
|
-
steps:
|
|
18
|
-
- uses: actions/checkout@v4
|
|
19
|
-
|
|
20
|
-
- uses: astral-sh/setup-uv@v5
|
|
21
|
-
with:
|
|
22
|
-
enable-cache: true
|
|
23
|
-
|
|
24
|
-
- name: Compute pre-release version
|
|
25
|
-
id: version
|
|
26
|
-
run: |
|
|
27
|
-
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
|
|
28
|
-
VERSION="${GITHUB_REF_NAME#v}"
|
|
29
|
-
echo "source=tag" >> "$GITHUB_OUTPUT"
|
|
30
|
-
else
|
|
31
|
-
CURRENT=$(python3 -c "
|
|
32
|
-
import re
|
|
33
|
-
m = re.search(r'version = \"([^\"]+)\"', open('pyproject.toml').read())
|
|
34
|
-
print(m.group(1))
|
|
35
|
-
")
|
|
36
|
-
VERSION="${CURRENT}.dev${{ github.run_number }}"
|
|
37
|
-
echo "source=keyword" >> "$GITHUB_OUTPUT"
|
|
38
|
-
fi
|
|
39
|
-
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
|
40
|
-
echo "Pre-release version: ${VERSION}"
|
|
41
|
-
|
|
42
|
-
- name: Patch pyproject.toml version
|
|
43
|
-
run: |
|
|
44
|
-
sed -i "s/^version = \".*\"/version = \"${{ steps.version.outputs.version }}\"/" pyproject.toml
|
|
45
|
-
grep "^version" pyproject.toml
|
|
46
|
-
|
|
47
|
-
- name: Build package
|
|
48
|
-
run: uv build
|
|
49
|
-
|
|
50
|
-
- name: Publish to PyPI
|
|
51
|
-
run: uv publish
|
|
52
|
-
env:
|
|
53
|
-
UV_PUBLISH_TOKEN: ${{ secrets.UV_PUBLISH_TOKEN }}
|
{superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/build.yml
RENAMED
|
File without changes
|
{superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/publish.yml
RENAMED
|
File without changes
|
{superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/.github/workflows/release.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
|
|
File without changes
|
{superproductivity_mcp-1.2.6.dev2 → superproductivity_mcp-1.2.6.dev4}/tests/test_mcp_logic.py
RENAMED
|
File without changes
|
|
File without changes
|