Runbook MCP server
@qloba
关于 Runbook MCP server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"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"
}
}
}
}工具
9Retrieve the article by its ID from the database.
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 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 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 top 100 books in the organization.
List top 100 categories in a specified book with ID.
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 current process information by book UID.
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.
概览
What is Runbook MCP server?
This MCP server integrates with the Runbook documentation platform to allow listing, reading, searching, creating, and updating documents, as well as running workflow processes. It is designed for users of Runbook who want to interact with their knowledge base programmatically.
How to use Runbook MCP server?
Install and configure the server using npx -y @runbook-docs/mcp-server. You must provide your Runbook subdomain base URL and API token either via environment variables (RUNBOOK_BASE_URL, RUNBOOK_API_TOKEN) or command-line arguments. The server can be used with Claude Desktop (via manual config or .mcpb extension) or Cursor.
Key features of Runbook MCP server
- List top 100 articles in a book
- Retrieve full article content by ID
- Create new articles in Markdown format
- Update existing articles by ID
- Search articles by keywords
- Run and manage workflow processes
Use cases of Runbook MCP server
- Searching a company knowledge base for relevant articles
- Automatically creating documentation from external sources
- Updating existing articles in bulk
- Running workflow processes based on article content
- Listing available books and categories to navigate content
FAQ from Runbook MCP server
What are the runtime requirements?
Node.js version 20.0.0 or higher is required.
How do I provide my Runbook credentials?
Set the RUNBOOK_BASE_URL (with your subdomain) and RUNBOOK_API_TOKEN environment variables, or pass them as command-line arguments --base-url and --api-token.
What Markdown elements are supported for article bodies?
Supported elements include headers (H2–H4), bold, italic, lists, links, code blocks, tables, blockquotes, callouts (info/warning), and Mermaid diagrams.
How do I get the full article body?
The list-articles and search-articles tools return bodies truncated to 200 characters. Use get-article with the article UID to retrieve the full content.
What ID formats are used?
Article IDs start with ar_, book IDs with bk_, category IDs with ca_,
其他 分类下的更多 MCP 服务器
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
Blender
ahujasidOpen-source MCP to use Blender with any LLM
评论