scrumdo-mcp 0.1.0__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.
- scrumdo_mcp-0.1.0/.github/workflows/publish.yml +39 -0
- scrumdo_mcp-0.1.0/.gitignore +15 -0
- scrumdo_mcp-0.1.0/LICENSE +21 -0
- scrumdo_mcp-0.1.0/PKG-INFO +200 -0
- scrumdo_mcp-0.1.0/README.md +169 -0
- scrumdo_mcp-0.1.0/pyproject.toml +77 -0
- scrumdo_mcp-0.1.0/spryng_mcp/__init__.py +1 -0
- scrumdo_mcp-0.1.0/spryng_mcp/client.py +272 -0
- scrumdo_mcp-0.1.0/spryng_mcp/config.py +53 -0
- scrumdo_mcp-0.1.0/spryng_mcp/server.py +98 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/__init__.py +1 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/activity.py +232 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/boards.py +84 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/cards.py +256 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/comments.py +53 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/fields.py +54 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/members.py +44 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/search.py +49 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/tasks.py +110 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/time_tracking.py +49 -0
- scrumdo_mcp-0.1.0/spryng_mcp/tools/webhooks.py +55 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Publish scrumdo-mcp to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
inputs:
|
|
8
|
+
dry_run:
|
|
9
|
+
description: "Dry run (build only, don't publish)"
|
|
10
|
+
type: boolean
|
|
11
|
+
default: true
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build-and-publish:
|
|
15
|
+
name: Build and publish scrumdo-mcp
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
|
|
18
|
+
permissions:
|
|
19
|
+
id-token: write # required for PyPI trusted publishing
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- uses: actions/setup-python@v5
|
|
25
|
+
with:
|
|
26
|
+
python-version: "3.12"
|
|
27
|
+
|
|
28
|
+
- name: Install build tools
|
|
29
|
+
run: pip install build twine
|
|
30
|
+
|
|
31
|
+
- name: Build package
|
|
32
|
+
run: python -m build
|
|
33
|
+
|
|
34
|
+
- name: Check distribution
|
|
35
|
+
run: twine check dist/*
|
|
36
|
+
|
|
37
|
+
- name: Publish to PyPI
|
|
38
|
+
if: ${{ github.event_name == 'release' || !inputs.dry_run }}
|
|
39
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ScrumDo LLC
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scrumdo-mcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MCP server for ScrumDo boards — connect any AI tool directly to your board
|
|
5
|
+
Project-URL: Homepage, https://www.scrumdo.com
|
|
6
|
+
Project-URL: Documentation, https://github.com/ScrumDoLLC/scrumdo-mcp#readme
|
|
7
|
+
Project-URL: Repository, https://github.com/ScrumDoLLC/scrumdo-mcp
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/ScrumDoLLC/scrumdo-mcp/issues
|
|
9
|
+
Author-email: ScrumDo LLC <support@scrumdo.com>
|
|
10
|
+
License: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: agile,ai,claude,cursor,kanban,llm,mcp,model-context-protocol,scrum,scrumdo,windsurf
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Office/Business :: Scheduling
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.11
|
|
22
|
+
Requires-Dist: httpx>=0.27.0
|
|
23
|
+
Requires-Dist: mcp[cli]>=1.3.0
|
|
24
|
+
Requires-Dist: pydantic>=2.0.0
|
|
25
|
+
Requires-Dist: python-dotenv>=1.0.0
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
28
|
+
Requires-Dist: pytest>=8.0; extra == 'dev'
|
|
29
|
+
Requires-Dist: respx>=0.21; extra == 'dev'
|
|
30
|
+
Description-Content-Type: text/markdown
|
|
31
|
+
|
|
32
|
+
# scrumdo-mcp
|
|
33
|
+
|
|
34
|
+
Connect any MCP-compatible AI tool (Claude Code, Cursor, Windsurf, and others) directly to your [ScrumDo](https://www.scrumdo.com) boards.
|
|
35
|
+
|
|
36
|
+
Once installed, your AI assistant can read cards, move them, create tasks, post comments, and search across your board — without you copy-pasting anything.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Installation
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pip install scrumdo-mcp
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
> **Pre-release / before PyPI publish:** install directly from GitHub:
|
|
47
|
+
> ```bash
|
|
48
|
+
> pip install git+https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
49
|
+
> ```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Cursor quick-start
|
|
54
|
+
|
|
55
|
+
**1 — Install**
|
|
56
|
+
```bash
|
|
57
|
+
# To run the server only:
|
|
58
|
+
pip install git+https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
59
|
+
|
|
60
|
+
# To run tests too:
|
|
61
|
+
git clone https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
62
|
+
cd scrumdo-mcp
|
|
63
|
+
pip install -e ".[dev]"
|
|
64
|
+
pytest tests/ -v
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
**2 — Get your token**
|
|
68
|
+
|
|
69
|
+
Log in to ScrumDo → your org → **Settings → API Tokens → Create Token**. Copy it — shown once only.
|
|
70
|
+
|
|
71
|
+
**3 — Add to `~/.cursor/mcp.json`**
|
|
72
|
+
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"mcpServers": {
|
|
76
|
+
"scrumdo": {
|
|
77
|
+
"command": "scrumdo-mcp",
|
|
78
|
+
"env": {
|
|
79
|
+
"SCRUMDO_TOKEN": "your-token-here",
|
|
80
|
+
"SCRUMDO_ORG": "your-org-slug",
|
|
81
|
+
"SCRUMDO_PROJECT": "your-default-project-slug"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Your org and project slugs are the short names in your board URL:
|
|
89
|
+
`app.scrumdo.com/`**`my-company`**`/`**`engineering`**
|
|
90
|
+
|
|
91
|
+
**4 — Restart Cursor**
|
|
92
|
+
|
|
93
|
+
Done. In any Cursor chat you can now ask:
|
|
94
|
+
- *"What cards are in the current sprint?"*
|
|
95
|
+
- *"Move ENG-42 to In Review"*
|
|
96
|
+
- *"Add a comment to ENG-42: PR is up for review"*
|
|
97
|
+
- *"List all cards assigned to me"*
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## Setup
|
|
102
|
+
|
|
103
|
+
### Step 1 — Get your token
|
|
104
|
+
|
|
105
|
+
Log in to ScrumDo → your organization → **Settings → API Tokens → Create Token**.
|
|
106
|
+
|
|
107
|
+
Copy the token — it is only shown once. This is your personal key; keep it private.
|
|
108
|
+
|
|
109
|
+
### Step 2 — Configure your AI tool
|
|
110
|
+
|
|
111
|
+
Find your tool's MCP config file and add the `scrumdo` server entry:
|
|
112
|
+
|
|
113
|
+
| Tool | Config file |
|
|
114
|
+
|------|-------------|
|
|
115
|
+
| Claude Code | `~/.claude/claude.json` |
|
|
116
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
117
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
118
|
+
|
|
119
|
+
```json
|
|
120
|
+
{
|
|
121
|
+
"mcpServers": {
|
|
122
|
+
"scrumdo": {
|
|
123
|
+
"command": "scrumdo-mcp",
|
|
124
|
+
"env": {
|
|
125
|
+
"SCRUMDO_TOKEN": "your-token-here",
|
|
126
|
+
"SCRUMDO_ORG": "your-org-slug",
|
|
127
|
+
"SCRUMDO_PROJECT": "your-default-project-slug"
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Your org slug and project slug are the short names in your board URL:
|
|
135
|
+
`app.scrumdo.com/`**`my-company`**`/`**`engineering`**
|
|
136
|
+
|
|
137
|
+
### Step 3 — Restart your AI tool
|
|
138
|
+
|
|
139
|
+
Done. Your AI assistant now has direct access to your board.
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## What you can do
|
|
144
|
+
|
|
145
|
+
Once connected, just talk to your AI tool naturally:
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
"What's the status of ENG-42?"
|
|
149
|
+
"Move ENG-42 to In Review and add a comment saying the PR is up"
|
|
150
|
+
"List all cards assigned to me in the current sprint"
|
|
151
|
+
"Create a sub-task on ENG-42: write release notes"
|
|
152
|
+
"Search for cards about the login bug"
|
|
153
|
+
"What did the team work on this week?"
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
## Available tools (41 total)
|
|
159
|
+
|
|
160
|
+
| Group | Tools |
|
|
161
|
+
|-------|-------|
|
|
162
|
+
| **Boards** | `list_boards`, `get_board`, `get_board_cells`, `list_iterations`, `list_labels`, `list_epics` |
|
|
163
|
+
| **Cards** | `list_cards`, `get_card`, `find_card`, `create_card`, `update_card`, `move_card`, `set_card_field`, `archive_card`, `assign_card`, `add_card_label`, `remove_card_label` |
|
|
164
|
+
| **Tasks** | `list_tasks`, `create_task`, `complete_task`, `reopen_task`, `update_task`, `delete_task` |
|
|
165
|
+
| **Comments** | `list_comments`, `add_comment`, `delete_comment` |
|
|
166
|
+
| **Fields** | `list_custom_fields`, `get_card_field`, `get_all_card_fields` |
|
|
167
|
+
| **Members** | `list_members`, `find_member` |
|
|
168
|
+
| **Search** | `search_cards`, `search_by_field_value` |
|
|
169
|
+
| **Activity** | `log_activity`, `get_activity_log`, `get_workspace_activity` |
|
|
170
|
+
| **Webhooks** | `list_webhooks`, `create_webhook`, `delete_webhook` |
|
|
171
|
+
| **Time** | `list_time_entries`, `log_time` |
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Environment variables
|
|
176
|
+
|
|
177
|
+
| Variable | Default | Description |
|
|
178
|
+
|----------|---------|-------------|
|
|
179
|
+
| `SCRUMDO_TOKEN` | — | **Required.** API token from Settings → API Tokens |
|
|
180
|
+
| `SCRUMDO_BASE_URL` | `https://app.spryng.io` | API base URL |
|
|
181
|
+
| `SCRUMDO_ORG` | — | Your organization slug |
|
|
182
|
+
| `SCRUMDO_PROJECT` | — | Default project slug |
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## Token scope
|
|
187
|
+
|
|
188
|
+
Your API token is restricted to your organization's board data only — cards, tasks, comments, members, iterations. It cannot access billing, account settings, or any other organization's data. Revoke it at any time from Settings → API Tokens.
|
|
189
|
+
|
|
190
|
+
---
|
|
191
|
+
|
|
192
|
+
## What is MCP?
|
|
193
|
+
|
|
194
|
+
[Model Context Protocol](https://modelcontextprotocol.io) is an open standard for connecting AI tools to external services. Claude Code, Cursor, Windsurf, and other AI editors support it natively. Install the server once; any MCP-compatible tool can use it.
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
## License
|
|
199
|
+
|
|
200
|
+
MIT
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# scrumdo-mcp
|
|
2
|
+
|
|
3
|
+
Connect any MCP-compatible AI tool (Claude Code, Cursor, Windsurf, and others) directly to your [ScrumDo](https://www.scrumdo.com) boards.
|
|
4
|
+
|
|
5
|
+
Once installed, your AI assistant can read cards, move them, create tasks, post comments, and search across your board — without you copy-pasting anything.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install scrumdo-mcp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
> **Pre-release / before PyPI publish:** install directly from GitHub:
|
|
16
|
+
> ```bash
|
|
17
|
+
> pip install git+https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
18
|
+
> ```
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Cursor quick-start
|
|
23
|
+
|
|
24
|
+
**1 — Install**
|
|
25
|
+
```bash
|
|
26
|
+
# To run the server only:
|
|
27
|
+
pip install git+https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
28
|
+
|
|
29
|
+
# To run tests too:
|
|
30
|
+
git clone https://github.com/ScrumDoLLC/scrumdo-mcp.git
|
|
31
|
+
cd scrumdo-mcp
|
|
32
|
+
pip install -e ".[dev]"
|
|
33
|
+
pytest tests/ -v
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
**2 — Get your token**
|
|
37
|
+
|
|
38
|
+
Log in to ScrumDo → your org → **Settings → API Tokens → Create Token**. Copy it — shown once only.
|
|
39
|
+
|
|
40
|
+
**3 — Add to `~/.cursor/mcp.json`**
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{
|
|
44
|
+
"mcpServers": {
|
|
45
|
+
"scrumdo": {
|
|
46
|
+
"command": "scrumdo-mcp",
|
|
47
|
+
"env": {
|
|
48
|
+
"SCRUMDO_TOKEN": "your-token-here",
|
|
49
|
+
"SCRUMDO_ORG": "your-org-slug",
|
|
50
|
+
"SCRUMDO_PROJECT": "your-default-project-slug"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Your org and project slugs are the short names in your board URL:
|
|
58
|
+
`app.scrumdo.com/`**`my-company`**`/`**`engineering`**
|
|
59
|
+
|
|
60
|
+
**4 — Restart Cursor**
|
|
61
|
+
|
|
62
|
+
Done. In any Cursor chat you can now ask:
|
|
63
|
+
- *"What cards are in the current sprint?"*
|
|
64
|
+
- *"Move ENG-42 to In Review"*
|
|
65
|
+
- *"Add a comment to ENG-42: PR is up for review"*
|
|
66
|
+
- *"List all cards assigned to me"*
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## Setup
|
|
71
|
+
|
|
72
|
+
### Step 1 — Get your token
|
|
73
|
+
|
|
74
|
+
Log in to ScrumDo → your organization → **Settings → API Tokens → Create Token**.
|
|
75
|
+
|
|
76
|
+
Copy the token — it is only shown once. This is your personal key; keep it private.
|
|
77
|
+
|
|
78
|
+
### Step 2 — Configure your AI tool
|
|
79
|
+
|
|
80
|
+
Find your tool's MCP config file and add the `scrumdo` server entry:
|
|
81
|
+
|
|
82
|
+
| Tool | Config file |
|
|
83
|
+
|------|-------------|
|
|
84
|
+
| Claude Code | `~/.claude/claude.json` |
|
|
85
|
+
| Cursor | `~/.cursor/mcp.json` |
|
|
86
|
+
| Windsurf | `~/.codeium/windsurf/mcp_config.json` |
|
|
87
|
+
|
|
88
|
+
```json
|
|
89
|
+
{
|
|
90
|
+
"mcpServers": {
|
|
91
|
+
"scrumdo": {
|
|
92
|
+
"command": "scrumdo-mcp",
|
|
93
|
+
"env": {
|
|
94
|
+
"SCRUMDO_TOKEN": "your-token-here",
|
|
95
|
+
"SCRUMDO_ORG": "your-org-slug",
|
|
96
|
+
"SCRUMDO_PROJECT": "your-default-project-slug"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Your org slug and project slug are the short names in your board URL:
|
|
104
|
+
`app.scrumdo.com/`**`my-company`**`/`**`engineering`**
|
|
105
|
+
|
|
106
|
+
### Step 3 — Restart your AI tool
|
|
107
|
+
|
|
108
|
+
Done. Your AI assistant now has direct access to your board.
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
## What you can do
|
|
113
|
+
|
|
114
|
+
Once connected, just talk to your AI tool naturally:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
"What's the status of ENG-42?"
|
|
118
|
+
"Move ENG-42 to In Review and add a comment saying the PR is up"
|
|
119
|
+
"List all cards assigned to me in the current sprint"
|
|
120
|
+
"Create a sub-task on ENG-42: write release notes"
|
|
121
|
+
"Search for cards about the login bug"
|
|
122
|
+
"What did the team work on this week?"
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Available tools (41 total)
|
|
128
|
+
|
|
129
|
+
| Group | Tools |
|
|
130
|
+
|-------|-------|
|
|
131
|
+
| **Boards** | `list_boards`, `get_board`, `get_board_cells`, `list_iterations`, `list_labels`, `list_epics` |
|
|
132
|
+
| **Cards** | `list_cards`, `get_card`, `find_card`, `create_card`, `update_card`, `move_card`, `set_card_field`, `archive_card`, `assign_card`, `add_card_label`, `remove_card_label` |
|
|
133
|
+
| **Tasks** | `list_tasks`, `create_task`, `complete_task`, `reopen_task`, `update_task`, `delete_task` |
|
|
134
|
+
| **Comments** | `list_comments`, `add_comment`, `delete_comment` |
|
|
135
|
+
| **Fields** | `list_custom_fields`, `get_card_field`, `get_all_card_fields` |
|
|
136
|
+
| **Members** | `list_members`, `find_member` |
|
|
137
|
+
| **Search** | `search_cards`, `search_by_field_value` |
|
|
138
|
+
| **Activity** | `log_activity`, `get_activity_log`, `get_workspace_activity` |
|
|
139
|
+
| **Webhooks** | `list_webhooks`, `create_webhook`, `delete_webhook` |
|
|
140
|
+
| **Time** | `list_time_entries`, `log_time` |
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Environment variables
|
|
145
|
+
|
|
146
|
+
| Variable | Default | Description |
|
|
147
|
+
|----------|---------|-------------|
|
|
148
|
+
| `SCRUMDO_TOKEN` | — | **Required.** API token from Settings → API Tokens |
|
|
149
|
+
| `SCRUMDO_BASE_URL` | `https://app.spryng.io` | API base URL |
|
|
150
|
+
| `SCRUMDO_ORG` | — | Your organization slug |
|
|
151
|
+
| `SCRUMDO_PROJECT` | — | Default project slug |
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Token scope
|
|
156
|
+
|
|
157
|
+
Your API token is restricted to your organization's board data only — cards, tasks, comments, members, iterations. It cannot access billing, account settings, or any other organization's data. Revoke it at any time from Settings → API Tokens.
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## What is MCP?
|
|
162
|
+
|
|
163
|
+
[Model Context Protocol](https://modelcontextprotocol.io) is an open standard for connecting AI tools to external services. Claude Code, Cursor, Windsurf, and other AI editors support it natively. Install the server once; any MCP-compatible tool can use it.
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## License
|
|
168
|
+
|
|
169
|
+
MIT
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "scrumdo-mcp"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "MCP server for ScrumDo boards — connect any AI tool directly to your board"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "ScrumDo LLC", email = "support@scrumdo.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = [
|
|
16
|
+
"mcp",
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"scrumdo",
|
|
19
|
+
"agile",
|
|
20
|
+
"scrum",
|
|
21
|
+
"kanban",
|
|
22
|
+
"ai",
|
|
23
|
+
"llm",
|
|
24
|
+
"claude",
|
|
25
|
+
"cursor",
|
|
26
|
+
"windsurf",
|
|
27
|
+
]
|
|
28
|
+
classifiers = [
|
|
29
|
+
"Development Status :: 4 - Beta",
|
|
30
|
+
"Intended Audience :: Developers",
|
|
31
|
+
"License :: OSI Approved :: MIT License",
|
|
32
|
+
"Programming Language :: Python :: 3",
|
|
33
|
+
"Programming Language :: Python :: 3.11",
|
|
34
|
+
"Programming Language :: Python :: 3.12",
|
|
35
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
36
|
+
"Topic :: Office/Business :: Scheduling",
|
|
37
|
+
]
|
|
38
|
+
dependencies = [
|
|
39
|
+
"mcp[cli]>=1.3.0",
|
|
40
|
+
"httpx>=0.27.0",
|
|
41
|
+
"pydantic>=2.0.0",
|
|
42
|
+
"python-dotenv>=1.0.0",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[project.urls]
|
|
46
|
+
Homepage = "https://www.scrumdo.com"
|
|
47
|
+
Documentation = "https://github.com/ScrumDoLLC/scrumdo-mcp#readme"
|
|
48
|
+
Repository = "https://github.com/ScrumDoLLC/scrumdo-mcp"
|
|
49
|
+
"Bug Tracker" = "https://github.com/ScrumDoLLC/scrumdo-mcp/issues"
|
|
50
|
+
|
|
51
|
+
[project.optional-dependencies]
|
|
52
|
+
dev = [
|
|
53
|
+
"pytest>=8.0",
|
|
54
|
+
"pytest-asyncio>=0.23",
|
|
55
|
+
"respx>=0.21",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[project.scripts]
|
|
59
|
+
scrumdo-mcp = "spryng_mcp.server:main"
|
|
60
|
+
|
|
61
|
+
[tool.hatch.build.targets.wheel]
|
|
62
|
+
packages = ["spryng_mcp"]
|
|
63
|
+
exclude = [
|
|
64
|
+
"tests/",
|
|
65
|
+
".env*",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[tool.hatch.build.targets.sdist]
|
|
69
|
+
exclude = [
|
|
70
|
+
".venv/",
|
|
71
|
+
"tests/",
|
|
72
|
+
".env*",
|
|
73
|
+
"dist/",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[tool.pytest.ini_options]
|
|
77
|
+
asyncio_mode = "auto"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""spryng_mcp — MCP server for ScrumDo / Spryng boards."""
|