submit_suggestion
InactiveTool of io.github.butterbase-ai/mcp
Submit feedback, bug reports, or feature suggestions to the Butterbase platform team. Use this tool when you encounter issues with Butterbase tools, want to suggest improvements, or when a user asks you to report something to the Butterbase team. Categories: - bug_report: Something isn't working as expected or documented. Example: "apply_schema fails silently when adding an enum column with a default value" - feature_request: A capability that doesn't exist yet but would be useful. Example: "Support for composite unique constraints across multiple columns" - improvement: An existing feature works but could be better. Example: "get_schema should include index definitions in its output" - documentation: The docs are missing, unclear, or incorrect. Example: "The deploy_function tool description doesn't mention the 50MB size limit" Source: - agent: You (the AI agent) are reporting this on your own initiative - human_prompted: The human user asked you to report this Returns: The created suggestion with a unique ID and status. Example output: { suggestion: { id: "a1b2c3d4-...", category: "bug_report", severity: "medium", description: "apply_schema returns success but...", affected_tool: "apply_schema", status: "new", created_at: "2026-04-05T10:00:00Z" } } Recent tool calls are automatically captured as context — you don't need to manually describe what you called. Just describe the issue or suggestion clearly. Idempotency: Each call creates a new suggestion. Avoid submitting duplicates.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"category",
"description"
],
"properties": {
"app_id": {
"type": "string",
"description": "The app ID if this suggestion relates to a specific app"
},
"source": {
"enum": [
"agent",
"human_prompted"
],
"type": "string",
"description": "Whether you are reporting this on your own or at the user's request (default: agent)"
},
"category": {
"enum": [
"bug_report",
"feature_request",
"improvement",
"documentation"
],
"type": "string",
"description": "Type of feedback"
},
"severity": {
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string",
"description": "How impactful is this? critical = blocks work, high = significant pain, medium = annoying, low = minor"
},
"description": {
"type": "string",
"minLength": 10,
"description": "Clear description of the issue, suggestion, or request. Be specific."
},
"affected_tool": {
"type": "string",
"description": "Name of the Butterbase tool affected (e.g. apply_schema, deploy_function)"
},
"agent_context": {
"type": "object",
"description": "Any additional structured context you want to attach (error messages, parameters tried, etc.)",
"additionalProperties": {}
},
"proposed_solution": {
"type": "string",
"description": "Your suggested fix or approach, if you have one"
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
io.github.butterbase-ai/mcp
https://github.com/butterbase-ai/butterbase-oss
1/7 registries