A Model Context Protocol (MCP) server for interacting with Playbooks Rules API.
- List available rules
- Search for rules by query
- Get details for a specific rule
npm install -g playbooks-rulesplaybooks-rulesThis MCP server expects a Rules API to be running at https://playbooks.com/api/v1/rules.
The MCP server exposes the following tools:
Lists all available rules from the API.
// No parameters requiredSearches for rules that match a query.
{
query: "your search query"
}Fetches a specific rule by slug or URL.
{
slug: "rule-slug-or-url"
}MIT