capacities_save_weblink
Store web links in a Capacities space with custom titles, descriptions, tags, and markdown notes for organized knowledge management.
Instructions
Save a web link to a Capacities space with optional title and tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
descriptionOverwrite | No | Optional description for the weblink | |
mdText | No | Text formatted as markdown that will be added to the notes section | |
spaceId | Yes | The UUID of the space to save the weblink to | |
tags | No | Optional Tags to add to the weblink. Tags need to exactly match your tag names in Capacities, otherwise they will be created. | |
titleOverwrite | No | Optional custom title for the weblink | |
url | Yes | The URL to save |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"descriptionOverwrite": {
"description": "Optional description for the weblink",
"maxLength": 500,
"type": "string"
},
"mdText": {
"description": "Text formatted as markdown that will be added to the notes section",
"maxLength": 200000,
"type": "string"
},
"spaceId": {
"description": "The UUID of the space to save the weblink to",
"format": "uuid",
"type": "string"
},
"tags": {
"description": "Optional Tags to add to the weblink. Tags need to exactly match your tag names in Capacities, otherwise they will be created.",
"items": {
"type": "string"
},
"maxItems": 30,
"type": "array"
},
"titleOverwrite": {
"description": "Optional custom title for the weblink",
"maxLength": 500,
"type": "string"
},
"url": {
"description": "The URL to save",
"format": "uri",
"type": "string"
}
},
"required": [
"spaceId",
"url"
],
"type": "object"
}