npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kiuki/kiuki-agentic-mcp

v1.3.1

Published

MCP server that lets AI agents shop on Kiuki — the UK grocery marketplace with AI shopping built in. Search products, build multi-vendor carts, and place orders via the Kiuki Agentic Commerce API.

Readme

Kiuki Agentic Commerce — MCP Server

Shop Kiuki — the UK grocery marketplace with AI shopping built in — from any MCP-compatible agent. Search thousands of grocery products across multiple independent vendors, build a multi-vendor cart, and complete checkout, all via natural-language tool calls.

Why Kiuki through MCP?

  • Multi-vendor, single cart. Comparison-shop across independent UK food producers and check out in one session.
  • Payment delegation is first-class. Agents holding a tokenised payment method (Stripe SPT, payment_method_id) can complete the order without a human-in-the-loop magic-link step.
  • Semantic search. Queries are routed through Google Cloud Retail AI, so natural-language intent ("low-sugar organic granola, gluten-free") returns relevance-ranked hits, not keyword matches.

Tools (12)

| Tool | Description | |------|-------------| | search_products | Semantic product search via Google Retail AI | | browse_category | List products in a category | | get_product | Product detail (price, stock, gtin, seller) | | create_checkout | Start a checkout session with one or more items | | get_checkout | Retrieve session state | | update_checkout | Modify items / fulfillment address / selected shipping option | | complete_checkout | Finalise with a Stripe Shared Payment Token or payment_method_id | | cancel_checkout | Cancel a pending session | | place_order | Shortcut: create → complete in one call | | get_order | Order status and tracking | | subscribe_webhook | Subscribe to order.completed / order.failed / checkout.abandoned / inventory.updated / delivery.status | | unsubscribe_webhook | Remove a webhook |

Install

Option 1 — Smithery (recommended)

Smithery handles install, config, and keeps the server up to date.

npx @smithery/cli install @kiuki/kiuki-agentic-mcp --client claude

The CLI will prompt for your KIUKI_API_KEY. Request one from [email protected].

Supported clients: claude (Claude Desktop), cursor, windsurf, vscode.

Option 2 — Claude Code plugin

For Claude Code users. Ships the MCP + a few friendly slash commands (/kiuki:search, /kiuki:checkout, /kiuki:order).

/plugin marketplace add kiukicom/kiuki-agentic-mcp
/plugin install kiuki@kiukicom

You'll be prompted for your KIUKI_API_KEY once at install; it's stored in your system keychain.

Option 3 — npx (no install)

npx @kiuki/kiuki-agentic-mcp

Option 4 — Manual (Claude Desktop)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "kiuki": {
      "command": "npx",
      "args": ["-y", "@kiuki/kiuki-agentic-mcp"],
      "env": {
        "KIUKI_API_URL": "https://api.kiuki.com",
        "KIUKI_API_KEY": "your-api-secret"
      }
    }
  }
}

Restart Claude Desktop. Ask it: "what organic granolas do you have under £5?"

Configuration

| Env var | Required | Default | Description | |---------|----------|---------|-------------| | KIUKI_API_KEY | yes | — | Sent as X-Api-Secret header. | | KIUKI_API_URL | no | https://api.kiuki.com | Override for staging or self-hosted. |

Powered by

  • Kiuki backend — Go microservices + GCP
  • Search — Google Cloud Retail AI
  • Payments — Stripe (supports Shared Payment Tokens)
  • Fulfilment — DespatchCloud

Resources

License

MIT © Kiuki