create_discussion
Initiate structured discussions by defining titles, content, urgency levels, and tags using the Model Context Protocol (MCP). Facilitate AI-driven collaboration and project context management.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| content | Yes | Detailed question or discussion content | |
| tags | No | Tags to categorize the discussion | |
| title | Yes | Title of the discussion/question | |
| urgency | No | Urgency level of the question | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "content": {
      "description": "Detailed question or discussion content",
      "type": "string"
    },
    "tags": {
      "description": "Tags to categorize the discussion",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "title": {
      "description": "Title of the discussion/question",
      "type": "string"
    },
    "urgency": {
      "description": "Urgency level of the question",
      "enum": [
        "low",
        "medium",
        "high"
      ],
      "type": "string"
    }
  },
  "required": [
    "title",
    "content"
  ],
  "type": "object"
}