Runbook Document Manager
STDIOMCP server integrates with Runbook for listing, reading, and searching documents.
MCP server integrates with Runbook for listing, reading, and searching documents.
This MCP server integrates with Runbook to allow listing, reading, and searching over documents.
get-article
articleUid
(string): ID of the article to retrieve. It always starts with ar_
.list-articles
bookUid
(string): ID of the book. It always starts with 'bk_'. You can retrieve a list of books with `list-books`.q
(string): Search query. If provided, the result will be filtered by article name.categoryUid
(string): ID of the category. It always starts with 'ca_'. You can retrieve a list of categories with `list-categories`.orderBy
(string): Sort field (updatedAt, createdAt, 'name', or 'popularity'). Default: popularity.list-books
q
(string): Search query. If provided, the result will be filtered by book name.list-categories
bookUid
(string): ID of the book. It always starts with 'bk_'. You can retrieve a list of books with `list-books`.search-articles
keywords
(string): Space-separated keywords to filter articles.scope
(string): ID of the book or workspace. You can retrieve a list of books with `list-books`.limit
(number): Number of articles to retrieve.offset
(number): Offset of the search result.orderBy
(string): Sort field (updatedAt, createdAt, or 'score'). Default: score.To integrate this server with the desktop app, add the following to your app's server configuration:
Add the following to your claude_desktop_config.json
{ "mcpServers": { "runbook": { "command": "npx", "args": [ "-y", "@runbook-docs/mcp-server" ], "env": { "RUNBOOK_BASE_URL": "https://<YOUR_SUBDOMAIN>.runbook.jp", "RUNBOOK_API_TOKEN": "your-api-token" } } } }
Add MCP server with following command.
npx -y @runbook-docs/mcp-server --api-token=your-api-tokan --base-url=https://yourdomain.runbook.jp
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.