get_feedback
InactiveTool of sncro
Read incoming feedback for THIS session's project. Returns bug reports, feature requests, usability notes, and success stories that other Claude sessions (or the project owner) have submitted via report_issue, filtered to this session's project. Lets Claude review what's coming in without needing the admin dashboard. Scope is strictly "this session's project" — determined by the project_key used at create_session time and stored in the session. You cannot read another project's feedback with this tool. Args: key: Session key secret: Session secret from create_session category: Optional filter — "bug", "feature_request", "usability", "documentation", or "success_story". Empty = all categories. limit: Max rows to return (default 20, capped at 100). Returns: {project_key, count, feedback: [{id, category, description, git_user, created_at, shipped_in_build, published}, ...]} or {error: "..."} on bad auth / missing project.
Parameters schema
{
"type": "object",
"title": "get_feedbackArguments",
"required": [
"key",
"secret"
],
"properties": {
"key": {
"type": "string",
"title": "Key"
},
"limit": {
"type": "integer",
"title": "Limit",
"default": 20
},
"secret": {
"type": "string",
"title": "Secret"
},
"category": {
"type": "string",
"title": "Category",
"default": ""
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
sncro
https://github.com/scottconfusedgorilla/sncro-relay
2/7 registries