@autodevjapan/godd-mcp-alpha 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/dist/godd.cjs +60 -0
- package/package.json +53 -0
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# GoDD MCP α Server
|
|
2
|
+
|
|
3
|
+
Cursor IDE 向けの AI プロンプト配信システム。MCP (Model Context Protocol) を通じて、プロジェクトの技術スタックに最適化されたプロンプト・マインドセット・エージェント定義を提供します。
|
|
4
|
+
|
|
5
|
+
## インストール
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @autodevjapan/godd-mcp-alpha
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## セットアップ
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Cursor IDE に MCP サーバーを登録
|
|
15
|
+
godd install --license-key=YOUR_LICENSE_KEY
|
|
16
|
+
|
|
17
|
+
# プロジェクトの config.godd を自動生成
|
|
18
|
+
godd init
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## 使い方
|
|
22
|
+
|
|
23
|
+
インストール後、Cursor IDE を再起動すると GoDD MCP α サーバーが自動で起動します。
|
|
24
|
+
|
|
25
|
+
Cursor のチャットで `@godd_dev`, `@godd_check`, `@godd_commit` 等のプロンプトを呼び出せます。
|
|
26
|
+
|
|
27
|
+
## コマンド
|
|
28
|
+
|
|
29
|
+
| コマンド | 説明 |
|
|
30
|
+
|---|---|
|
|
31
|
+
| `godd install [--license-key=KEY]` | Cursor に MCP サーバーを登録 |
|
|
32
|
+
| `godd init [--force] [--lang=LANG]` | プロジェクトの config.godd を生成 |
|
|
33
|
+
| `godd uninstall` | Cursor から MCP サーバーを削除 |
|
|
34
|
+
| `godd serve` | MCP stdio サーバーを起動(Cursor が自動呼び出し) |
|
|
35
|
+
|
|
36
|
+
## 動作要件
|
|
37
|
+
|
|
38
|
+
- Node.js 20 以上
|
|
39
|
+
- Cursor IDE
|
|
40
|
+
- GoDD ライセンスキー
|
|
41
|
+
|
|
42
|
+
## ライセンス
|
|
43
|
+
|
|
44
|
+
Proprietary — GoDD ライセンスキーが必要です。
|