Ghost MCP Server

by MFYDev
Verified

create_invite

Create a staff user invite in Ghost.

Args: role_id: ID of the role to assign to the invited user (required) email: Email address to send the invite to (required) ctx: Optional context for logging Returns: String representation of the created invite Raises: GhostError: If the Ghost API request fails ValueError: If required parameters are missing or invalid

Input Schema

NameRequiredDescriptionDefault
emailYes
role_idYes

Input Schema (JSON Schema)

{ "properties": { "email": { "title": "Email", "type": "string" }, "role_id": { "title": "Role Id", "type": "string" } }, "required": [ "role_id", "email" ], "title": "create_inviteArguments", "type": "object" }