atlas-mcp-server

by cyanheads
Verified

project_link_add

Add links to external resources like documentation, designs, or repositories. Supports both single link creation and bulk operations with optional categorization.

Input Schema

NameRequiredDescriptionDefault
categoryNoOptional grouping category.
descriptionNoOptional context about the resource.
linksNoRequired for bulk mode: Array of 1-100 links with title and URL.
modeYes'single' for one link, 'bulk' for multiple links.
projectIdYesProject ID to add links to (must start with 'proj_').
titleNoRequired for single mode: Link title.
urlNoRequired for single mode: Valid URL with HTTPS protocol.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "Optional grouping category.", "type": "string" }, "description": { "description": "Optional context about the resource.", "type": "string" }, "links": { "description": "Required for bulk mode: Array of 1-100 links with title and URL.", "items": { "additionalProperties": false, "properties": { "category": { "description": "Optional grouping category (e.g., 'documentation', 'design').", "type": "string" }, "description": { "description": "Optional context about the resource.", "type": "string" }, "title": { "description": "Link title (concise, informative).", "minLength": 1, "type": "string" }, "url": { "$ref": "#/properties/url", "description": "Valid URL with HTTPS protocol (HTTP allowed for localhost)." } }, "required": [ "title", "url" ], "type": "object" }, "maxItems": 100, "minItems": 1, "type": "array" }, "mode": { "description": "'single' for one link, 'bulk' for multiple links.", "enum": [ "single", "bulk" ], "type": "string" }, "projectId": { "description": "Project ID to add links to (must start with 'proj_').", "type": "string" }, "title": { "description": "Required for single mode: Link title.", "minLength": 1, "type": "string" }, "url": { "description": "Required for single mode: Valid URL with HTTPS protocol.", "format": "uri", "type": "string" } }, "required": [ "mode", "projectId" ], "type": "object" }