@kanbodev/mcp 1.1.4 → 1.1.5
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/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -16839,7 +16839,7 @@ var CONFIG = {
|
|
|
16839
16839
|
};
|
|
16840
16840
|
var SERVER_INFO = {
|
|
16841
16841
|
name: "kanbo-mcp",
|
|
16842
|
-
version: "1.1.
|
|
16842
|
+
version: "1.1.5",
|
|
16843
16843
|
description: "MCP server for Kanbo project management"
|
|
16844
16844
|
};
|
|
16845
16845
|
var PAT_CONFIG = {
|
|
@@ -28583,7 +28583,7 @@ The AI gathers project context automatically (related tickets, statuses, workflo
|
|
|
28583
28583
|
var findSimilarTicketsTool = {
|
|
28584
28584
|
tool: {
|
|
28585
28585
|
name: "find_similar_tickets",
|
|
28586
|
-
description: "Semantic search for similar tickets. Use BEFORE creating a ticket to check for duplicates
|
|
28586
|
+
description: "Semantic search for similar tickets using vector similarity (cosine). Use cases: (1) BEFORE creating a ticket to check for duplicates, (2) find related work to a given ticket — pair with get_completed_tickets to discover closed tickets that addressed the same topic, (3) general discovery of thematically related tickets across the project. Returns results ranked by similarity score.",
|
|
28587
28587
|
inputSchema: {
|
|
28588
28588
|
type: "object",
|
|
28589
28589
|
properties: {
|
|
@@ -29448,7 +29448,7 @@ var TOOL_INDEX = {
|
|
|
29448
29448
|
},
|
|
29449
29449
|
tags: "Apply 2-5 tags per ticket AFTER creation using set_ticket_tags. Use lowercase-kebab-case. Common categories: feature area (auth, billing), technology (react, api), work type (feature, bug, refactor). Create missing tags with create_tag first.",
|
|
29450
29450
|
ticket_type: "Always set typeSlug when creating tickets. Common types: feature, bug, task, improvement, story, spike, docs. Use list_ticket_types to see project-specific types. The typeSlug determines which template_structure sections to use.",
|
|
29451
|
-
related_tickets: "ALWAYS call find_similar_tickets before creating a ticket to check for duplicates and related work. If a related parent ticket exists, link via parentId when creating. Use get_ticket_children to view subtasks of a ticket.",
|
|
29451
|
+
related_tickets: "ALWAYS call find_similar_tickets before creating a ticket to check for duplicates and related work. If a related parent ticket exists, link via parentId when creating. Use get_ticket_children to view subtasks of a ticket. To find closed tickets related to a specific ticket, call find_similar_tickets with the ticket title/description, then cross-reference results with get_completed_tickets.",
|
|
29452
29452
|
ai_workflow: "For best results, use the AI tools in this order: find_similar_tickets (check duplicates/related) → check_clarity (verify title) → generate_description (AI-generate HTML + acceptance criteria) → suggest_attributes (AI-suggest priority, size, tags) → create_ticket (ALWAYS include acceptanceCriteria + parentId if related) → set_ticket_tags. The generate_description tool gathers project context (related tickets, workflow) automatically."
|
|
29453
29453
|
},
|
|
29454
29454
|
categories: {
|