Notion MCP Server

by ramidecodes
Verified

get-user

Input Schema

NameRequiredDescriptionDefault
user_idYesThe ID of the user to retrieve

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "user_id": { "description": "The ID of the user to retrieve", "type": "string" } }, "required": [ "user_id" ], "type": "object" }