BotKelp

Remote HTTP MCP that generates verified Next.js component scaffolds with integrity stamps for Claude/Cursor agents.

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноТолько чтение

Что умеет

  • Search Components: Search the BotKelp component registry (Next.js/Supabase/Tailwind "Lego blocks"). Returns id, name, version, description, requires, conflictsWith, provides (capability tags, e.g. "au
  • Generate Scaffold: Generate a Next.js + Supabase + Tailwind project scaffold from the given component ids. Component `requires` are resolved automatically. Returns the full generated file tree as text
  • Get Scaffold Template: Requests a build for the given component ids, backed by a private GitHub repo BotKelp owns and manages itself under its own org — never your account. Returns the repo's location

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

Remote HTTP MCP that generates verified Next.js component scaffolds with integrity stamps for Claude/Cursor agents.

Список инструментов сервера (9)

Технические названия из tools/list. Нужны только разработчикам.

search_componentsSearch the BotKelp component registry (Next.js/Supabase/Tailwind "Lego blocks"). Returns id, name, version, description, requires, conflictsWith, provides (capability tags, e.g. "authentication"), dependencies, envVariables, `sources` (docs/github-releases/github-examples citations proving this component was checked against real, current official material — not written from memory), and a `freshness` field (status/checkedAt/outdatedDependencies from the latest automated build check, or null if never validated) for each match — check freshness before relying on a component. Filter by free-text query and/or by `provides` capability tags (e.g. `["authentication"]`) to discover components by what they do rather than needing to already know their ids. Call with no arguments to list everything.
generate_scaffoldGenerate a Next.js + Supabase + Tailwind project scaffold from the given component ids. Component `requires` are resolved automatically. Returns the full generated file tree as text so the calling agent can write the files itself. Omit `apiKey` for Local Mode: free, unauthenticated, files-only generation (no job tracking). Pass `apiKey` (a premium BotKelp key) to additionally record the attempt as a job. To get a private repo BotKelp manages itself instead of inline files, use get_scaffold_template.
get_scaffold_templateRequests a build for the given component ids, backed by a private GitHub repo BotKelp owns and manages itself under its own org — never your account. Returns the repo's location and a short-lived, single-repo-scoped clone credential; clone it yourself, BotKelp never touches wherever you copy it to. Repeat requests for the same component combination reuse the same repo at no extra GitHub-side cost. Requires an BotKelp account key with sufficient credit — there is no free/local mode for this tool (see generate_scaffold for that). See check_component_updates to find out when a newer combination is available.
buy_scaffold_templateSame repo hand-off as get_scaffold_template — a private GitHub repo BotKelp owns and manages itself, plus a short-lived clone credential — but paid per call in USDC via the x402 protocol instead of a BotKelp account: no signup, no API key, callable by any agent with its own wallet. Call once without a payment to receive the price and payment requirements (HTTP 402-style, in the tool result's `accepts` field), then retry the same call with `_meta["x402/payment"]` set to a signed x402 payment matching those requirements. You are only charged if the call succeeds.
check_component_updatesRead-only, side-effect-free: compares the component versions you currently have pinned against BotKelp's current registry and reports what has newer versions available, plus each component's latest CI freshness status. BotKelp never reads your repo itself — pass the versions you currently have. Call this on whatever schedule you like (daily, weekly, on demand); nothing is pushed or applied automatically. Requires an BotKelp account key with sufficient credit.
verify_scaffoldRuns a real `npm install && npm run build` against the given files and reports whether the project builds. Free, no API key needed. Use it after editing a `generate_scaffold` result (e.g. wiring a component into a page) before handing the project to the user. The build runs asynchronously: call once with `files` (the full project — every file, not just the ones you changed) and you get back status "WAIT" and a `jobId`; call again with that `jobId` until you get "OK" (it builds) or "FAIL" (it does not, with the compiler error). A build usually takes one to two minutes.
create_projectRegister a project: links a GitHub repo the agent will maintain a persistent, synced local clone for, so future tasks can branch off an up-to-date base without re-cloning. Requires a BotKelp account key — projects are private to the account that registers them.
list_projectsList the projects registered by this BotKelp account. Requires a BotKelp account key — never returns another account's projects.
apply_changes_to_repoSyncs a project's local clone with its base branch (pulling if it has fallen behind), applies file changes on a new branch, validates the build when the repo is a Node project, and opens a Pull Request for human review. The agent never pushes to the base branch directly. Requires the BotKelp account key that registered the project — fails for a project id you don't own, the same as for an unknown one.