add-note
Add a note to the MCP News Server to store or organize information related to news articles, tech, data science, or cybersecurity. Specify a name and content for efficient tracking.
Instructions
Add a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}