report_agent_issue
ActiveTool of FavCRM
declared in 1.0.0
Report a FavCRM platform issue when an agent finds a missing MCP path, tool failure, confusing schema, CLI/docs issue, or SDK fallback. Include logs, AI analysis, references, and clarification questions so the platform team can follow up.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"title",
"severity",
"area",
"expectedBehavior",
"actualBehavior",
"stepsTried",
"aiAnalysis"
],
"properties": {
"area": {
"enum": [
"mcp_tool_missing",
"mcp_tool_error",
"mcp_schema_confusing",
"auth",
"cli",
"docs",
"sdk_fallback",
"other"
],
"type": "string",
"description": "Issue area"
},
"logs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Relevant error messages, command output, or stack traces"
},
"title": {
"type": "string",
"maxLength": 180,
"minLength": 3,
"description": "Short issue title"
},
"severity": {
"enum": [
"critical",
"high",
"medium",
"low"
],
"type": "string",
"description": "Impact level"
},
"toolCalls": {
"type": "array",
"items": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"description": "Relevant MCP/CLI/SDK calls, arguments, and outcomes"
},
"aiAnalysis": {
"type": "string",
"minLength": 1,
"description": "Agent analysis of likely root cause and impact"
},
"references": {
"type": "array",
"items": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"description": "Source links, file paths, docs, screenshots, or IDs that support the report"
},
"stepsTried": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"description": "Concrete steps the agent tried before reporting"
},
"workaround": {
"type": "string",
"description": "Temporary workaround used, if any"
},
"environment": {
"type": "object",
"description": "Runtime context such as MCP URL, CLI version, token type, client, sandbox, model, OS",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"actualBehavior": {
"type": "string",
"minLength": 1,
"description": "What actually happened"
},
"expectedBehavior": {
"type": "string",
"minLength": 1,
"description": "What the agent or user expected to happen"
},
"clarificationQuestions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Questions the platform team should ask the agent/user to resolve ambiguity"
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries