Notion MCP Server

by ramidecodes
Verified

create-link-preview

Input Schema

NameRequiredDescriptionDefault
page_idNoThe ID of the page to add the preview to
urlYesThe URL to create a preview for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "page_id": { "description": "The ID of the page to add the preview to", "type": "string" }, "url": { "description": "The URL to create a preview for", "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }