add-note
Create and store notes by specifying a name and content. Integrates with MCPilot, a gateway for the Model Context Protocol, to streamline AI toolchain management.
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"
}