ask_mcp_advice
Receive AI-driven project guidance for implementing features, fixing bugs, or deploying tasks by leveraging advanced knowledge from the MCP server's integrated resources.
Instructions
Advanced project guidance using AI-filtered knowledge from .knowledges directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
intended_action | Yes | What you intend to do (e.g., 'implement feature', 'fix bug', 'deploy') | |
scope | No | Scope of guidance needed | project |
task_description | Yes | Detailed description of the specific task |
Input Schema (JSON Schema)
{
"properties": {
"intended_action": {
"description": "What you intend to do (e.g., 'implement feature', 'fix bug', 'deploy')",
"title": "Intended Action",
"type": "string"
},
"scope": {
"default": "project",
"description": "Scope of guidance needed",
"title": "Scope",
"type": "string"
},
"task_description": {
"description": "Detailed description of the specific task",
"title": "Task Description",
"type": "string"
}
},
"required": [
"intended_action",
"task_description"
],
"type": "object"
}