About
Kosher updates BDD for the AI era.
README
Kosher is a Behavior-Driven Development (BDD) tool that reads Gherkin feature files and executes user stories against web applications using an AI inference engine and Playwright browser automation.
Requirements
Requires ollama and playwright-mcp running locally. Tested using Python v3.14.
Getting Started
# 1. Install Ollama
curl -fsSL https://ollama.com/install.sh | sh
# 2. Pull the model
ollama pull qwen2.5-coder:14b-instruct-q4_K_M
# 3. Start Playwright MCP server (separate terminal)
npx @playwright/mcp@latest
# 4. Clone and set up project
git clone <repo>
cd kosher
python -m venv venv
source venv/bin/activate
pip install -e .
# 5. Run proof of concept
python poc/main.py
Reliability Summary: qwen2.5-coder:14b for Gherkin → Playwright
Success Rate: ~90% on a 6-step login flow (20 runs)
What Works Well:
- Correctly interprets Given/When/Then semantics
- Maps steps to appropriate browser tools (navigate, click, type, snapshot, wait_for)
- Extracts element refs from snapshots and uses them correctly (most of the time)
- Learns new patterns from system prompt updates (adopted browser_wait_for after instruction)
Failure Modes:
- Placeholder refs - Sometimes outputs
instead of actual ref like e5, suggesting it "knows" what to do but doesn't execute properly - Skipped tool execution - Occasionally outputs JSON + "DONE" in one response without waiting for tool results
- No native tool calling - Always outputs JSON in text content; requires parsing with parse_tool_call_from_text()
- Instruction drift - Multi-step instructions (navigate → snapshot → confirm) sometimes get partially followed
Implications:
- Viable for PoC and demos
- Production use would need retry logic, validation, and possibly a more capable model
- System prompt engineering is effective for teaching new patterns
- The 10% failure rate is LLM variability, not fixable by prompt alone
Installing Kosher
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/whittle/kosherFAQ
Is Kosher MCP free?
Yes, Kosher MCP is free — one-click install via Unyly at no cost.
Does Kosher need an API key?
No, Kosher runs without API keys or environment variables.
Is Kosher hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Kosher in Claude Desktop, Claude Code or Cursor?
Open Kosher on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzCompare Kosher with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
