@zelklab/seevo-mcp-server 0.1.0 → 0.1.1
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/dist/setup.js +5 -5
- package/package.json +3 -2
package/dist/setup.js
CHANGED
|
@@ -57,7 +57,7 @@ function setupMCP(token, isGlobal, projectPath) {
|
|
|
57
57
|
// Seevo MCPサーバーの設定を追加
|
|
58
58
|
config.mcpServers.seevo = {
|
|
59
59
|
command: "npx",
|
|
60
|
-
args: ["@zelklab/seevo-mcp-server"],
|
|
60
|
+
args: ["-y", "@zelklab/seevo-mcp-server"],
|
|
61
61
|
env: {
|
|
62
62
|
SEEVO_MCP_TOKEN: token,
|
|
63
63
|
SEEVO_API_URL: SEEVO_API_URL,
|
|
@@ -106,10 +106,10 @@ const args = process.argv.slice(2);
|
|
|
106
106
|
if (args.length === 0) {
|
|
107
107
|
console.error("❌ エラー: トークンを指定してください\n");
|
|
108
108
|
console.log("使い方:");
|
|
109
|
-
console.log("
|
|
110
|
-
console.log("
|
|
111
|
-
console.log("
|
|
112
|
-
console.log("
|
|
109
|
+
console.log(" seevo-mcp-setup YOUR_TOKEN # デフォルト: ローカル");
|
|
110
|
+
console.log(" seevo-mcp-setup YOUR_TOKEN --local # プロジェクトローカル(推奨)");
|
|
111
|
+
console.log(" seevo-mcp-setup YOUR_TOKEN --global # グローバル設定");
|
|
112
|
+
console.log(" seevo-mcp-setup YOUR_TOKEN --path /path/to/project # 別のプロジェクトに設定\n");
|
|
113
113
|
process.exit(1);
|
|
114
114
|
}
|
|
115
115
|
// 引数をパース
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zelklab/seevo-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP Server for Seevo - AI-powered project registration from Claude Code",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"seevo-mcp": "./dist/setup.js"
|
|
8
|
+
"seevo-mcp-setup": "./dist/setup.js",
|
|
9
|
+
"seevo-mcp-server": "./dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "tsc",
|