Skip to main content
Glama

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

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

Implementation Reference

  • The handler function that executes the tool logic by calling backlog.postWiki to create a new wiki page.
    handler: async ({ projectId, name, content, mailNotify }) => backlog.postWiki({ projectId, name, content, mailNotify, }),
  • Input schema for the add_wiki tool, defining parameters like projectId, name, content, and optional mailNotify.
    const addWikiSchema = buildToolSchema((t) => ({ projectId: z.number().describe(t('TOOL_ADD_WIKI_PROJECT_ID', 'Project ID')), name: z.string().describe(t('TOOL_ADD_WIKI_NAME', 'Name of the wiki page')), content: z .string() .describe(t('TOOL_ADD_WIKI_CONTENT', 'Content of the wiki page')), mailNotify: z .boolean() .optional() .describe( t( 'TOOL_ADD_WIKI_MAIL_NOTIFY', 'Whether to send notification emails (default: false)' ) ), }));
  • The add_wiki tool is registered here in the wiki toolset group.
    addWikiTool(backlog, helper),

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nulab/backlog-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server