Backlog MCP Server

by fleagne
Verified

backlog_add_wiki

Create and add a wiki page to a Backlog project by specifying the project ID, page name, and content. Optionally enable email notifications for updates. Integrates with Backlog API for streamlined project documentation.

Instructions

Add an wiki using the Backlog Wiki API.

Input Schema

NameRequiredDescriptionDefault
contentYesContent
mailNotifyNoTrue make to notify by Email
nameYesPage Name
projectIdYesProject ID

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Content", "type": "string" }, "mailNotify": { "description": "True make to notify by Email", "type": "boolean" }, "name": { "description": "Page Name", "type": "string" }, "projectId": { "description": "Project ID", "type": "number" } }, "required": [ "projectId", "name", "content" ], "type": "object" }
ID: ekxpemr97g