Action domain

wiki

Every action this domain exposes through gitlab_execute_action, from the gitlab://tools manifest. Each entry folds out to its full upstream description and required parameters.

6 · actions1 · destructive2 · read-only

Counted with a Free-tier GitLab token. The catalog is scoped to the token that asks, so the count moves with both its tier and its permissions: higher tiers expose more actions, and administration domains only appear to tokens allowed to use them.

Back to the server card

  1. wiki.createWiki Create

    Create a new wiki page. Returns: the created page with title, slug, format, content, and encoding. See also: wiki.get, wiki.update, wiki.list.

    Required parameters: content (string), project_id (string), title (string)

  2. wiki.deleteWiki Deletedestructive

    Delete a wiki page permanently. Returns: a success confirmation for the removed page. See also: wiki.get, wiki.list.

    Required parameters: project_id (string), slug (string)

  3. wiki.getWiki Getread-only

    Get a single wiki page by slug. Returns: the page title, slug, format, content, and encoding. See also: wiki.list, wiki.update, wiki.delete.

    Required parameters: project_id (string), slug (string)

  4. wiki.listWiki Listread-only

    List a project's wiki pages. Returns: each page's title, slug, and format (plus content when with_content is set), with hints to read or create pages. See also: wiki.get, wiki.create.

    Required parameters: project_id (string)

  5. wiki.updateWiki Update

    Update an existing wiki page by slug. Returns: the updated page with title, slug, format, content, and encoding. See also: wiki.get, wiki.delete, wiki.list.

    Required parameters: project_id (string), slug (string)

  6. wiki.upload_attachmentWiki Upload Attachment

    Upload an attachment to the project wiki repository. Returns: the attachment file name, file path, branch, URL, and ready-to-paste Markdown link. See also: wiki.get, wiki.update.

    Required parameters: filename (string), project_id (string)