Backlog MCP Server

add_wiki

Create and manage wiki pages in Backlog projects by specifying project ID, page name, content, and email notifications, enabling organized knowledge sharing.

Instructions

Creates a new wiki page

Input Schema

NameRequiredDescriptionDefault
contentYesContent of the wiki page
mailNotifyNoWhether to send notification emails (default: false)
nameYesName of the wiki page
projectIdYesProject ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content": { "description": "Content of the wiki page", "type": "string" }, "mailNotify": { "description": "Whether to send notification emails (default: false)", "type": "boolean" }, "name": { "description": "Name of the wiki page", "type": "string" }, "projectId": { "description": "Project ID", "type": "number" } }, "required": [ "projectId", "name", "content" ], "type": "object" }
ID: lktnbgdbjl