update-codebase-insight
Update codebase insights by modifying an insight's content, type, related files, or tags within the CodeAnalysis MCP Server to enhance development workflows and maintain accurate project documentation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| insightContent | No | ||
| insightId | Yes | ||
| insightType | No | ||
| relatedFiles | No | ||
| tags | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"insightContent": {
"type": "string"
},
"insightId": {
"type": "number"
},
"insightType": {
"type": "string"
},
"relatedFiles": {
"items": {
"type": "string"
},
"type": "array"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"insightId"
],
"type": "object"
}