forked from BunsDev/quackback
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
85 lines (85 loc) · 2.34 KB
/
server.json
File metadata and controls
85 lines (85 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "dev.opencoven/feedback",
"description": "Open-source feedback platform. Agents can search, triage, comment, vote, and manage changelogs.",
"repository": {
"url": "https://github.com/OpenCoven/feedback",
"source": "github"
},
"version": "1.0.0",
"remotes": [
{
"type": "streamable-http",
"url": "https://{host}/api/mcp",
"variables": {
"host": {
"description": "Hostname of your OpenCoven Feedback instance (e.g., feedback.yourcompany.com)",
"isRequired": true,
"format": "string"
}
}
}
],
"tools": [
{
"name": "search",
"description": "Search feedback posts or changelog entries with filtering and pagination"
},
{
"name": "get_details",
"description": "Get full details for any entity by TypeID (post, changelog)"
},
{
"name": "triage_post",
"description": "Update a post: set status, tags, and/or owner"
},
{
"name": "vote_post",
"description": "Toggle vote on a feedback post"
},
{
"name": "add_comment",
"description": "Post a comment on a feedback post, with threaded reply support"
},
{
"name": "create_post",
"description": "Submit new feedback on a board"
},
{
"name": "create_changelog",
"description": "Create a changelog entry (draft or published)"
},
{
"name": "update_changelog",
"description": "Update title, content, publish state, and linked posts on a changelog"
},
{
"name": "delete_changelog",
"description": "Soft-delete a changelog entry"
},
{
"name": "update_comment",
"description": "Edit a comment's content"
},
{
"name": "delete_comment",
"description": "Hard-delete a comment and its replies"
},
{
"name": "react_to_comment",
"description": "Add or remove an emoji reaction on a comment"
},
{
"name": "manage_roadmap_post",
"description": "Add or remove a post from a roadmap"
},
{
"name": "merge_post",
"description": "Merge a duplicate post into a canonical post"
},
{
"name": "unmerge_post",
"description": "Restore a merged post to independent state"
}
]
}