Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Skill: Gurkerl.at Grocery Shopping Owner: florianbeer Summary: Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-25T20:47:15.032Z | user Initial release: 47 MCP tools for Austrian grocery shopping - products, cart, orders, recipes, favorites Archive index: Archive v1.0.0: 2 files, 2466 bytes Files: SKILL.md (5323b), _me
clawhub skill install kn700p24jn7snwp1wmr0801k9x7zx80x:gurkerlOverall rank
#62
Adoption
1.5K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
Gurkerl.at Grocery Shopping is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Skill: Gurkerl.at Grocery Shopping Owner: florianbeer Summary: Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-25T20:47:15.032Z | user Initial release: 47 MCP tools for Austrian grocery shopping - products, cart, orders, recipes, favorites Archive index: Archive v1.0.0: 2 files, 2466 bytes Files: SKILL.md (5323b), _me Capability contract not published. No trust telemetry is available yet. 1.5K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.0
Install & run
clawhub skill install kn700p24jn7snwp1wmr0801k9x7zx80x:gurkerlSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.0
Adoption signal
1.5K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
6
Snippets
0
Languages
Unknown
bash
export GURKERL_EMAIL="your@email.com" export GURKERL_PASS="your-password"
ini
[Service] Environment="GURKERL_EMAIL=your@email.com" Environment="GURKERL_PASS=your-password"
bash
# Search products (German keywords)
gurkerl search_products '{"keyword":"Milch"}'
gurkerl search_products '{"keyword":"Bio Eier","sort_type":"orderPriceAsc"}'
# Get cart
gurkerl get_cart
# Add to cart
gurkerl add_items_to_cart '{"items":[{"productId":1234567,"quantity":2}]}'
# View orders
gurkerl fetch_orders '{"limit":3}'
gurkerl fetch_orders '{"order_type":"upcoming"}'
# Search recipes
gurkerl search_recipes_by_vector_similarity '{"query":"vegetarisch schnell"}'bash
# Check what's on sale
gurkerl search_products '{"filters":[{"filterSlug":"sales","valueSlug":"sales"}]}'
# Add milk to cart
gurkerl search_products '{"keyword":"Milch"}' # Get product ID
gurkerl add_items_to_cart '{"items":[{"productId":MILK_ID,"quantity":2}]}'
# Review cart
gurkerl get_cartbash
gurkerl fetch_orders '{"limit":1}' # Get order ID
gurkerl repeat_order '{"order_id":ORDER_ID}'bash
gurkerl search_recipes_by_vector_similarity '{"query":"schnelles Abendessen"}'
gurkerl get_recipe_detail '{"recipe_id":RECIPE_ID,"include_product_mapping":true}'
# Add matched products to cartSKILL.md
---
name: gurkerl
description: Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites.
homepage: https://www.gurkerl.at/seite/mcp-server
metadata:
clawdbot:
emoji: "🥒"
requires:
bins: ["curl", "jq"]
env:
- GURKERL_EMAIL
- GURKERL_PASS
tags:
- grocery
- shopping
- austria
- mcp
- rohlik
- delivery
---
# Gurkerl.at MCP Skill
Austrian grocery delivery service (part of Rohlik Group). Search products, manage your cart, view orders, browse recipes, and more.
> **Note:** This skill uses Gurkerl's official MCP server. The same approach works for other Rohlik Group brands (Rohlik.cz, Knuspr.de, Kifli.hu) — just change the MCP URL in the script.
## Setup
Set environment variables:
```bash
export GURKERL_EMAIL="your@email.com"
export GURKERL_PASS="your-password"
```
For persistent access, add to `~/.config/systemd/user/clawdbot-gateway.service.d/gurkerl.conf`:
```ini
[Service]
Environment="GURKERL_EMAIL=your@email.com"
Environment="GURKERL_PASS=your-password"
```
## CLI Usage
```bash
# Search products (German keywords)
gurkerl search_products '{"keyword":"Milch"}'
gurkerl search_products '{"keyword":"Bio Eier","sort_type":"orderPriceAsc"}'
# Get cart
gurkerl get_cart
# Add to cart
gurkerl add_items_to_cart '{"items":[{"productId":1234567,"quantity":2}]}'
# View orders
gurkerl fetch_orders '{"limit":3}'
gurkerl fetch_orders '{"order_type":"upcoming"}'
# Search recipes
gurkerl search_recipes_by_vector_similarity '{"query":"vegetarisch schnell"}'
```
## Available Tools
### Products & Search
| Tool | Description |
|------|-------------|
| `search_products` | Search by keyword, filters, sort. Use German keywords. |
| `get_products_details_batch` | Get details for multiple product IDs |
| `get_product_composition` | Nutritional info, allergens, ingredients |
| `get_category_products` | Browse products in a category |
| `get_main_categories` | List store categories |
| `get_brands_navigation` | List available brands |
### Cart
| Tool | Description |
|------|-------------|
| `get_cart` | View current cart |
| `add_items_to_cart` | Add products: `{"items":[{"productId":123,"quantity":1}]}` |
| `update_cart_item` | Change quantity: `{"product_id":123,"quantity":3}` |
| `remove_cart_item` | Remove item: `{"product_id":123}` |
| `clear_cart` | Empty entire cart |
### Orders
| Tool | Description |
|------|-------------|
| `fetch_orders` | Get order history. Params: `limit`, `order_type` (delivered/upcoming/both), `date_from`, `date_to` |
| `repeat_order` | Reorder: `{"order_id":12345678}` |
| `cancel_order` | Cancel upcoming order (two-step: first `customer_confirmed:false`, then `true`) |
| `get_alternative_timeslots` | Get available delivery times |
| `change_order_timeslot` | Change delivery slot |
### Recipes
| Tool | Description |
|------|-------------|
| `search_recipes_by_vector_similarity` | Semantic recipe search |
| `get_recipe_deta_meta.json
{
"ownerId": "kn700p24jn7snwp1wmr0801k9x7zx80x",
"slug": "gurkerl",
"version": "1.0.0",
"publishedAt": 1769374035032
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Skill: Gurkerl.at Grocery Shopping Owner: florianbeer Summary: Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-01-25T20:47:15.032Z | user Initial release: 47 MCP tools for Austrian grocery shopping - products, cart, orders, recipes, favorites Archive index: Archive v1.0.0: 2 files, 2466 bytes Files: SKILL.md (5323b), _me
Skill: Gurkerl.at Grocery Shopping
Owner: florianbeer
Summary: Gurkerl.at grocery shopping via MCP - search products, manage cart, orders, recipes, favorites.
Tags: latest:1.0.0
Version history:
v1.0.0 | 2026-01-25T20:47:15.032Z | user
Initial release: 47 MCP tools for Austrian grocery shopping - products, cart, orders, recipes, favorites
Archive index:
Archive v1.0.0: 2 files, 2466 bytes
Files: SKILL.md (5323b), _meta.json (126b)
File v1.0.0:SKILL.md
Austrian grocery delivery service (part of Rohlik Group). Search products, manage your cart, view orders, browse recipes, and more.
Note: This skill uses Gurkerl's official MCP server. The same approach works for other Rohlik Group brands (Rohlik.cz, Knuspr.de, Kifli.hu) — just change the MCP URL in the script.
Set environment variables:
export GURKERL_EMAIL="your@email.com"
export GURKERL_PASS="your-password"
For persistent access, add to ~/.config/systemd/user/clawdbot-gateway.service.d/gurkerl.conf:
[Service]
Environment="GURKERL_EMAIL=your@email.com"
Environment="GURKERL_PASS=your-password"
# Search products (German keywords)
gurkerl search_products '{"keyword":"Milch"}'
gurkerl search_products '{"keyword":"Bio Eier","sort_type":"orderPriceAsc"}'
# Get cart
gurkerl get_cart
# Add to cart
gurkerl add_items_to_cart '{"items":[{"productId":1234567,"quantity":2}]}'
# View orders
gurkerl fetch_orders '{"limit":3}'
gurkerl fetch_orders '{"order_type":"upcoming"}'
# Search recipes
gurkerl search_recipes_by_vector_similarity '{"query":"vegetarisch schnell"}'
| Tool | Description |
|------|-------------|
| search_products | Search by keyword, filters, sort. Use German keywords. |
| get_products_details_batch | Get details for multiple product IDs |
| get_product_composition | Nutritional info, allergens, ingredients |
| get_category_products | Browse products in a category |
| get_main_categories | List store categories |
| get_brands_navigation | List available brands |
| Tool | Description |
|------|-------------|
| get_cart | View current cart |
| add_items_to_cart | Add products: {"items":[{"productId":123,"quantity":1}]} |
| update_cart_item | Change quantity: {"product_id":123,"quantity":3} |
| remove_cart_item | Remove item: {"product_id":123} |
| clear_cart | Empty entire cart |
| Tool | Description |
|------|-------------|
| fetch_orders | Get order history. Params: limit, order_type (delivered/upcoming/both), date_from, date_to |
| repeat_order | Reorder: {"order_id":12345678} |
| cancel_order | Cancel upcoming order (two-step: first customer_confirmed:false, then true) |
| get_alternative_timeslots | Get available delivery times |
| change_order_timeslot | Change delivery slot |
| Tool | Description |
|------|-------------|
| search_recipes_by_vector_similarity | Semantic recipe search |
| get_recipe_detail | Full recipe with ingredients mapped to products |
| generate_recipe_with_ingredients_search | AI-generated recipes with product matches |
| get_recipes_navigation | Browse recipe categories |
| Tool | Description |
|------|-------------|
| get_user_info | Account profile |
| get_user_credits | Available credits/vouchers |
| get_user_addresses | Saved delivery addresses |
| get_all_user_favorites | All favorited products |
| get_user_shopping_lists_preview | List all shopping lists |
| get_user_shopping_list_detail | View list contents |
| create_shopping_list | Create new list |
| add_products_to_shopping_list | Add product to list |
| Tool | Description |
|------|-------------|
| submit_claim | File warranty claim for missing/damaged items |
| get_customer_support_contact_info | Phone, email, WhatsApp |
| get_user_reusable_bags_info | Check bag deposit status |
| adjust_user_reusable_bags | Correct bag count |
| Tool | Description |
|------|-------------|
| calculate_average_user_order | Generate typical order from history |
| get_faq_content | FAQ for: general, xtra_general, xtra_price, baby_club, christmas |
| fetch_all_job_listings | Career opportunities |
news (new products), sales (on sale)orderPriceAsc, orderPriceDesc, recommended (default)"include_nutritions":true"include_allergens":true# Check what's on sale
gurkerl search_products '{"filters":[{"filterSlug":"sales","valueSlug":"sales"}]}'
# Add milk to cart
gurkerl search_products '{"keyword":"Milch"}' # Get product ID
gurkerl add_items_to_cart '{"items":[{"productId":MILK_ID,"quantity":2}]}'
# Review cart
gurkerl get_cart
gurkerl fetch_orders '{"limit":1}' # Get order ID
gurkerl repeat_order '{"order_id":ORDER_ID}'
gurkerl search_recipes_by_vector_similarity '{"query":"schnelles Abendessen"}'
gurkerl get_recipe_detail '{"recipe_id":RECIPE_ID,"include_product_mapping":true}'
# Add matched products to cart
File v1.0.0:_meta.json
{ "ownerId": "kn700p24jn7snwp1wmr0801k9x7zx80x", "slug": "gurkerl", "version": "1.0.0", "publishedAt": 1769374035032 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T06:01:11.657Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/florianbeer/gurkerl",
"sourceUrl": "https://clawhub.ai/florianbeer/gurkerl",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.5K downloads",
"href": "https://clawhub.ai/florianbeer/gurkerl",
"sourceUrl": "https://clawhub.ai/florianbeer/gurkerl",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.0",
"href": "https://clawhub.ai/florianbeer/gurkerl",
"sourceUrl": "https://clawhub.ai/florianbeer/gurkerl",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-01-25T20:47:15.032Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-florianbeer-gurkerl/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.0",
"description": "Initial release: 47 MCP tools for Austrian grocery shopping - products, cart, orders, recipes, favorites",
"href": "https://clawhub.ai/florianbeer/gurkerl",
"sourceUrl": "https://clawhub.ai/florianbeer/gurkerl",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-01-25T20:47:15.032Z",
"isPublic": true
}
]Sponsored
Ads related to Gurkerl.at Grocery Shopping and adjacent AI workflows.