File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,13 +43,30 @@ Key specs:
4343# 1. Install Kimi CLI
4444uv tool install kimi-cli && kimi login
4545
46- # 2. Clone and build
47- git clone https://github.com/howardpen9/kimi-code-mcp.git
48- cd kimi-code-mcp && npm install && npm run build
46+ # 2. Install via npm
47+ npm install -g kimi-mcp-server
4948```
5049
5150Add to ` .mcp.json ` (project-level or ` ~/.claude/mcp.json ` for global):
5251
52+ ``` json
53+ {
54+ "mcpServers" : {
55+ "kimi-code" : {
56+ "command" : " npx" ,
57+ "args" : [" -y" , " kimi-mcp-server" ]
58+ }
59+ }
60+ }
61+ ```
62+
63+ Or build from source:
64+
65+ ``` bash
66+ git clone https://github.com/howardpen9/kimi-code-mcp.git
67+ cd kimi-code-mcp && npm install && npm run build
68+ ```
69+
5370``` json
5471{
5572 "mcpServers" : {
@@ -239,6 +256,15 @@ For development (auto-recompile on changes):
239256}
240257```
241258
259+ ## npm
260+
261+ Published as [ ` kimi-mcp-server ` ] ( https://www.npmjs.com/package/kimi-mcp-server ) on npm.
262+
263+ ``` bash
264+ npx kimi-mcp-server # run directly
265+ npm install -g kimi-mcp-server # install globally
266+ ```
267+
242268## Project Structure
243269
244270```
Original file line number Diff line number Diff line change @@ -43,13 +43,30 @@ MCP 伺服器,將 [Kimi Code](https://www.kimi.com/code)(K2.5,256K 上下
4343# 1. 安裝 Kimi CLI
4444uv tool install kimi-cli && kimi login
4545
46- # 2. 克隆並構建
47- git clone https://github.com/howardpen9/kimi-code-mcp.git
48- cd kimi-code-mcp && npm install && npm run build
46+ # 2. 透過 npm 安裝
47+ npm install -g kimi-mcp-server
4948```
5049
5150在 ` .mcp.json ` (專案目錄或 ` ~/.claude/mcp.json ` 全域)加入:
5251
52+ ``` json
53+ {
54+ "mcpServers" : {
55+ "kimi-code" : {
56+ "command" : " npx" ,
57+ "args" : [" -y" , " kimi-mcp-server" ]
58+ }
59+ }
60+ }
61+ ```
62+
63+ 或從原始碼構建:
64+
65+ ``` bash
66+ git clone https://github.com/howardpen9/kimi-code-mcp.git
67+ cd kimi-code-mcp && npm install && npm run build
68+ ```
69+
5370``` json
5471{
5572 "mcpServers" : {
Original file line number Diff line number Diff line change 11{
2- "name" : " kimi-code- mcp" ,
2+ "name" : " kimi-mcp-server " ,
33 "version" : " 0.3.0" ,
4- "description" : " MCP server bridging Kimi Code (256K context) with Claude Code for cost-efficient codebase analysis" ,
4+ "description" : " MCP server for Claude Code × Kimi K2.5 (256K context) — delegate bulk codebase analysis to Kimi, save 90% on token costs " ,
55 "type" : " module" ,
66 "main" : " dist/index.js" ,
77 "bin" : {
8- "kimi-code- mcp" : " dist/index.js"
8+ "kimi-mcp-server " : " dist/index.js"
99 },
1010 "files" : [
1111 " dist" ,
You can’t perform that action at this time.
0 commit comments