save_mcp_docs
Store MCP documentation securely by saving text with a unique key for easy retrieval and future reference, enhancing project organization on the MCP Maker server.
Instructions
Saves MCP documentation text directly and stores it for future reference
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| doc_text | Yes | ||
| key | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"doc_text": {
"minLength": 1,
"type": "string"
},
"key": {
"minLength": 1,
"type": "string"
}
},
"required": [
"key",
"doc_text"
],
"type": "object"
}