Runbook
JSON →Integrates with Runbook to allow listing, reading, and searching over documents.
Install
npx -y @runbook-docs/mcp-server Tools · 9
- get-article Retrieve the article by its ID from the database.
- 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.
- 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.
- 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_'.
- list-books List top 100 books in the organization.
- list-categories List top 100 categories in a specified book with ID.
- 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.
- get-process Get current process information by book UID.
- 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.
Environment variables
RUNBOOK_BASE_URLRUNBOOK_API_TOKEN
Links
★ 2 GitHub stars