返回 MCP 目录
public公开dns本地运行

编码助手kibitz

Kibitz 是一个专为专业人士设计的编码助手,旨在提升开发效率。它通过提供一个本地开发服务器,允许用户在浏览器中直接进行编码操作。Kibitz 支持通过 Anthropic API 进行高级配置,并允许用户自定义系统提示和模型设置。此外,Kibitz 还支持与 MCP 服务器的集成,用户可以通过配置 MCP 服务器来扩展其功能。Kibitz 的配置是按项目进行的,创建新项目时会继承部分配置,如 API 密钥和模型设置,但不会复制 MCP 服务器配置。Kibitz 还支持为 Kinode 构建,通过指定基础路径和默认 WS-MCP 服务器 URI 来定制化部署。

article

README

kibitz

The coding agent for professionals

https://github.com/user-attachments/assets/3f8df448-1c81-4ff2-8598-c48283a4dc00

Prerequisites

  • git
  • npm

Installation

  1. Clone the repository:
git clone https://github.com/nick1udwig/kibitz.git
cd kibitz
  1. Install dependencies:
npm install
  1. Run the development server:
npm run dev
  1. Open http://localhost:3000 in your browser.

Configuration

  1. Open the Settings panel in the UI
  2. Enter your Anthropic API key (Get one here).
  3. Optionally set a system prompt
  4. Configure MCPs by running them using ws-mcp and then connecting to them in the Settings page

Note configuration is PER-PROJECT. When creating a new project, it will use some, but not all, of the current project's configuration: the API key, model, and system prompt will be copied over, but MCP servers will not.

Building for Kinode

  1. Add a base to the endpoint by building with the NEXT_PUBLIC_BASE_PATH (MUST start with a /),
  2. Change the default WS-MCP server URI by specifying NEXT_PUBLIC_DEFAULT_WS_URI (MUST start with a /),

like so:

NEXT_PUBLIC_BASE_PATH=/kibitz:kibitz:nick.kino NEXT_PUBLIC_DEFAULT_WS_URI=/fwd-ws:kibitz:nick.kino npm run build

and then copy the contents of out/ into the package's pkg/ui/ dir.

help

运行方式说明

cloud

托管运行

托管运行通常表示这个 MCP Server 由服务方环境承载,用户一般按页面提供的连接方式或授权流程接入,不需要在本地长期启动一个 MCP 进程

  1. 打开服务方连接页
  2. 完成授权或复制端点
  3. 在 MCP 客户端中连接
terminal

本地运行 / 其它方式

本地运行通常需要用户在自己的电脑或服务器上安装依赖,把 server_config 复制到 MCP 客户端,并按 env_schema 补齐环境变量、密钥或其它配置

  1. 复制 server_config
  2. 安装所需依赖
  3. 补齐环境变量后重启客户端