runbook-mcp-server

qloba/runbook-mcp-server

3.3

If you are the rightful owner of runbook-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

This MCP server integrates with Runbook to allow listing, reading, and searching over documents.

Tools

Functions exposed to the LLM to take actions

runbook-search-articles

Search for articles using keywords from Runbook. The result does not include full article bodies as they are truncated to 200 characters. You will need to retrieve the full content by calling get-article

runbook-get-article

Retrieve the article by its ID from the database.

runbook-list-articles

List top 100 articles in a specified book with ID. The result does not include full article bodies as they are truncated to 200 characters. You will need to retrieve the full content by calling get-article.

runbook-create-article

Create a new article in a specified book with ID. The article body is in Markdown format. The article will be created in the root folder of the book. You can specify categories for the article by their IDs, which always start with 'ca_' You can retrieve a list of books with list-books and categories with list-categories. Markdown format supports:

  • Headers: ## H2, ### H3, #### H4. Don't use # H1 as it is reserved for the article title.
  • Bold: bold text
  • Italic: italic text
  • Lists: - item or 1. numbered item
  • Links:
  • Code blocks: \ncode\n
  • Tables: | col1 | col2 |\n| --- | --- |\n| data | data |
  • Blockquotes: > quoted text
  • Callouts: :::callout info\ntext\n::: or :::callout warning\ntext\n:::
  • SVG images: image.svg

runbook-update-article

Update an existing article by its ID. The article body is in Markdown format. You can specify categories for the article by their IDs, which always start with 'ca_'. Markdown format supports:

  • Headers: ## H2, ### H3, #### H4. Don't use # H1 as it is reserved for the article title.
  • Bold: bold text
  • Italic: italic text
  • Lists: - item or 1. numbered item
  • Links:
  • Code blocks: \ncode\n
  • Tables: | col1 | col2 |\n| --- | --- |\n| data | data |
  • Blockquotes: > quoted text
  • Callouts: :::callout info\ntext\n::: or :::callout warning\ntext\n:::
  • SVG images: image.svg

runbook-list-books

List top 100 books in the organization

runbook-list-categories

List top 100 categories in a specified book with ID

runbook-get-process

Get current process information by book UID

runbook-run-process

This tool is used to start a new process or continue an existing one. If the run state UID is not provided, a new process will be created.

Prompts

Interactive templates invoked by user choice

runbook-execute-workflow

Execute a Runbook workflow process step by step with user confirmation

Resources

Contextual data attached and managed by the client

No resources