refine-backlog-mcp 1.0.2 → 1.0.4
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.
- package/Dockerfile +9 -0
- package/LICENSE +21 -0
- package/package.json +2 -1
- package/server.ts +5 -1
package/Dockerfile
ADDED
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Perpetual Agility 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.
|
package/package.json
CHANGED
package/server.ts
CHANGED
|
@@ -81,7 +81,11 @@ const REFINE_TOOL: Tool = {
|
|
|
81
81
|
"Refine messy backlog items into structured, actionable work items. " +
|
|
82
82
|
"Returns each item with a clean title, problem statement, acceptance criteria, " +
|
|
83
83
|
"T-shirt size estimate (XS/S/M/L/XL), priority with rationale, tags, and optional assumptions. " +
|
|
84
|
-
"Free tier: up to 5 items per request. Pro: 25. Team: 50
|
|
84
|
+
"Free tier: up to 5 items per request. Pro: 25. Team: 50.\n\n" +
|
|
85
|
+
"BEFORE calling this tool, ask the user TWO quick questions if they haven't already specified:\n" +
|
|
86
|
+
"1. Would you like titles formatted as user stories? (\"As a [user], I want [goal], so that [benefit]\")\n" +
|
|
87
|
+
"2. Would you like acceptance criteria in Gherkin format? (Given/When/Then)\n" +
|
|
88
|
+
"Set useUserStories and useGherkin accordingly based on their answers. Both default to false.",
|
|
85
89
|
inputSchema: {
|
|
86
90
|
type: "object",
|
|
87
91
|
required: ["items"],
|