---
title: WebMCP Kit
description: Make your website accessible to AI agents by exposing WebMCP tools they can call.
seo:
  title: Make your website accessible to AI agents
---


AI agents interact with websites through the UI. They parse the page, locate elements, and simulate clicks. This is slow, brittle, and breaks when the interface changes.

[WebMCP](https://webmachinelearning.github.io/webmcp/) is a web standard that fixes this. A page can hand the agent a small set of typed tools — *search products*, *add to cart*, *book a demo* — that run through the site's own code. The agent stops guessing at your UI and starts calling functions you defined.

**WebMCP Kit** is a plugin for Claude Code and Codex that does the work of adding those tools to your site. It reads your codebase, proposes a short plan of tools worth having, waits for your approval, writes the code, and verifies every tool in a real browser. Tools are chosen around the journeys that matter on your site — what a visitor actually comes to do — so an agent gets the best path through your site, not a wrapper around every endpoint.

## Install

```
/plugin marketplace add nekuda-ai/webmcp-kit
/plugin install webmcp-kit@nekuda
```

Then, in your website's repo:

```
/webmcp-kit:implement
```

<CardGroup cols={2}>
  <Card title="Quickstart" href="/quickstart" icon="rocket">
    From repo to agent-ready in one session.
  </Card>
  <Card title="How it works" href="/how-it-works" icon="book">
    The mental model: journeys, the approval gate, and what the kit will never do.
  </Card>
  <Card title="Skills" href="/skills/implement" icon="terminal">
    Reference for `/webmcp-kit:implement` and `/webmcp-kit:verify`.
  </Card>
  <Card title="SDK" href="/sdk" icon="code">
    `@nekuda/webmcp-sdk` — the small browser SDK the generated code is built on.
  </Card>
</CardGroup>

## What's in the kit

| Piece | What it does |
| --- | --- |
| `/webmcp-kit:implement` | Reads your repo, plans the tools, writes them after you approve, verifies them. |
| `/webmcp-kit:verify` | Checks a running site: tools registered on the right pages, working when called. |
| [`@nekuda/webmcp-sdk`](https://www.npmjs.com/package/@nekuda/webmcp-sdk) | The browser SDK the generated tools are built on. The plugin wires it in for you. |

## The one rule that matters

Nothing is written before you approve it. The plan — which tools, wired to what, worded how — is presented to you first, and only an explicit approval moves it forward. That review gate is the product, not a formality.

---

WebMCP Kit is built by [nekuda](https://nekuda.ai).
