strava-activity-mcp-server 0.1.5__tar.gz → 0.1.6__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.
- strava_activity_mcp_server-0.1.6/.github/workflows/python-publish.yml +70 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/PKG-INFO +5 -2
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/README.md +4 -1
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/pyproject.toml +18 -18
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/uv.lock +1 -1
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/.gitignore +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/.python-version +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/.vscode/settings.json +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/LICENSE +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/ref/mcp_pypi_example.md +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/requirements.txt +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/src/strava_activity_mcp_server/__init__.py +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/src/strava_activity_mcp_server/__main__.py +0 -0
- {strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/src/strava_activity_mcp_server/strava_activity_mcp_server.py +0 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
# This workflow will upload a Python Package to PyPI when a release is created
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
3
|
+
|
4
|
+
# This workflow uses actions that are not certified by GitHub.
|
5
|
+
# They are provided by a third-party and are governed by
|
6
|
+
# separate terms of service, privacy policy, and support
|
7
|
+
# documentation.
|
8
|
+
|
9
|
+
name: Upload Python Package
|
10
|
+
|
11
|
+
on:
|
12
|
+
release:
|
13
|
+
types: [published]
|
14
|
+
|
15
|
+
permissions:
|
16
|
+
contents: read
|
17
|
+
|
18
|
+
jobs:
|
19
|
+
release-build:
|
20
|
+
runs-on: ubuntu-latest
|
21
|
+
|
22
|
+
steps:
|
23
|
+
- uses: actions/checkout@v4
|
24
|
+
|
25
|
+
- uses: actions/setup-python@v5
|
26
|
+
with:
|
27
|
+
python-version: "3.x"
|
28
|
+
|
29
|
+
- name: Build release distributions
|
30
|
+
run: |
|
31
|
+
# NOTE: put your own distribution build steps here.
|
32
|
+
python -m pip install build
|
33
|
+
python -m build
|
34
|
+
|
35
|
+
- name: Upload distributions
|
36
|
+
uses: actions/upload-artifact@v4
|
37
|
+
with:
|
38
|
+
name: release-dists
|
39
|
+
path: dist/
|
40
|
+
|
41
|
+
pypi-publish:
|
42
|
+
runs-on: ubuntu-latest
|
43
|
+
needs:
|
44
|
+
- release-build
|
45
|
+
permissions:
|
46
|
+
# IMPORTANT: this permission is mandatory for trusted publishing
|
47
|
+
id-token: write
|
48
|
+
|
49
|
+
# Dedicated environments with protections for publishing are strongly recommended.
|
50
|
+
# For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
|
51
|
+
environment:
|
52
|
+
name: pypi
|
53
|
+
# OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
|
54
|
+
# url: https://pypi.org/p/YOURPROJECT
|
55
|
+
#
|
56
|
+
# ALTERNATIVE: if your GitHub Release name is the PyPI project version string
|
57
|
+
# ALTERNATIVE: exactly, uncomment the following line instead:
|
58
|
+
# url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }}
|
59
|
+
|
60
|
+
steps:
|
61
|
+
- name: Retrieve release distributions
|
62
|
+
uses: actions/download-artifact@v4
|
63
|
+
with:
|
64
|
+
name: release-dists
|
65
|
+
path: dist/
|
66
|
+
|
67
|
+
- name: Publish release distributions to PyPI
|
68
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
69
|
+
with:
|
70
|
+
packages-dir: dist/
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: strava-activity-mcp-server
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: Trying to implement environment variables for client_id
|
5
5
|
License-File: LICENSE
|
6
6
|
Requires-Python: >=3.10
|
@@ -10,7 +10,9 @@ Requires-Dist: twine>=6.2.0
|
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
|
12
12
|
# Strava Activity MCP Server
|
13
|
-

|
14
|
+
[](https://opensource.org/licenses/gpl-3-0)
|
15
|
+
[](https://www.python.org/downloads/release/python-3130/)
|
14
16
|
|
15
17
|
A small Model Context Protocol (MCP) server that exposes your Strava athlete data to language-model tooling.
|
16
18
|
|
@@ -138,3 +140,4 @@ This project is licensed under the GNU GENERAL PUBLIC LICENSE — see the `LICEN
|
|
138
140
|
- Documentation note: see `README.md` for an example MCP configuration
|
139
141
|
|
140
142
|
|
143
|
+
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# Strava Activity MCP Server
|
2
|
-

|
3
|
+
[](https://opensource.org/licenses/gpl-3-0)
|
4
|
+
[](https://www.python.org/downloads/release/python-3130/)
|
3
5
|
|
4
6
|
A small Model Context Protocol (MCP) server that exposes your Strava athlete data to language-model tooling.
|
5
7
|
|
@@ -127,3 +129,4 @@ This project is licensed under the GNU GENERAL PUBLIC LICENSE — see the `LICEN
|
|
127
129
|
- Documentation note: see `README.md` for an example MCP configuration
|
128
130
|
|
129
131
|
|
132
|
+
|
@@ -1,18 +1,18 @@
|
|
1
|
-
[project]
|
2
|
-
name = "strava-activity-mcp-server"
|
3
|
-
version = "0.1.
|
4
|
-
description = "Trying to implement environment variables for client_id"
|
5
|
-
readme = "README.md"
|
6
|
-
requires-python = ">=3.10"
|
7
|
-
dependencies = [
|
8
|
-
"build>=1.3.0",
|
9
|
-
"mcp[cli]>=1.16.0",
|
10
|
-
"twine>=6.2.0",
|
11
|
-
]
|
12
|
-
|
13
|
-
[project.scripts]
|
14
|
-
strava-activity-mcp-server = "strava_activity_mcp_server:main"
|
15
|
-
|
16
|
-
[build-system]
|
17
|
-
requires = ["hatchling"]
|
18
|
-
build-backend = "hatchling.build"
|
1
|
+
[project]
|
2
|
+
name = "strava-activity-mcp-server"
|
3
|
+
version = "0.1.6"
|
4
|
+
description = "Trying to implement environment variables for client_id"
|
5
|
+
readme = "README.md"
|
6
|
+
requires-python = ">=3.10"
|
7
|
+
dependencies = [
|
8
|
+
"build>=1.3.0",
|
9
|
+
"mcp[cli]>=1.16.0",
|
10
|
+
"twine>=6.2.0",
|
11
|
+
]
|
12
|
+
|
13
|
+
[project.scripts]
|
14
|
+
strava-activity-mcp-server = "strava_activity_mcp_server:main"
|
15
|
+
|
16
|
+
[build-system]
|
17
|
+
requires = ["hatchling"]
|
18
|
+
build-backend = "hatchling.build"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{strava_activity_mcp_server-0.1.5 → strava_activity_mcp_server-0.1.6}/ref/mcp_pypi_example.md
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|