Skip to content

Commit 3cad0bc

Browse files
committed
chore(version): update version to 0.4.0 in package.json and published to npm registry
1 parent 2c8b2dc commit 3cad0bc

File tree

4 files changed

+59
-5
lines changed

4 files changed

+59
-5
lines changed

README.ja.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,34 @@ Backlog API とやり取りするための Model Context Protocol(MCP)サー
6565
docker pull ghcr.io/nulab/backlog-mcp-server:latest
6666
```
6767

68-
### オプション2: 手動セットアップ (Node.js)
68+
### オプション2: npx経由でのインストール
69+
70+
リポジトリをクローンせずに `npx` を使用してサーバーを直接実行することもできます。これは、完全なインストールなしでサーバーを実行する便利な方法です。
71+
72+
1. MCP設定を開きます
73+
2. MCP設定セクションに移動します
74+
3. 次の設定を追加します:
75+
76+
```json
77+
{
78+
"mcpServers": {
79+
"backlog": {
80+
"command": "npx",
81+
"args": [
82+
"backlog-mcp-server"
83+
],
84+
"env": {
85+
"BACKLOG_DOMAIN": "your-domain.backlog.com",
86+
"BACKLOG_API_KEY": "your-api-key"
87+
}
88+
}
89+
}
90+
}
91+
```
92+
93+
`your-domain.backlog.com` を実際のBacklogドメインに、`your-api-key` を実際のBacklog APIキーに置き換えてください。
94+
95+
### オプション3: 手動セットアップ (Node.js)
6996

7097
1. クローンしてインストール:
7198
```bash

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,34 @@ Replace `your-domain.backlog.com` with your Backlog domain and `your-api-key` wi
6565
docker pull ghcr.io/nulab/backlog-mcp-server:latest
6666
```
6767

68-
### Option 2: Manual Setup (Node.js)
68+
### Option 2: Install via npx
69+
70+
You can also run the server directly using `npx` without cloning the repository. This is a convenient way to run the server without a full installation.
71+
72+
1. Open MCP settings
73+
2. Navigate to the MCP configuration section
74+
3. Add the following configuration:
75+
76+
```json
77+
{
78+
"mcpServers": {
79+
"backlog": {
80+
"command": "npx",
81+
"args": [
82+
"backlog-mcp-server"
83+
],
84+
"env": {
85+
"BACKLOG_DOMAIN": "your-domain.backlog.com",
86+
"BACKLOG_API_KEY": "your-api-key"
87+
}
88+
}
89+
}
90+
}
91+
```
92+
93+
Replace `your-domain.backlog.com` with your Backlog domain and `your-api-key` with your Backlog API key.
94+
95+
### Option 3: Manual Setup (Node.js)
6996

7097
1. Clone and install:
7198
```bash

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backlog-mcp-server",
3-
"version": "0.1.1",
3+
"version": "0.4.0",
44
"type": "module",
55
"bin": {
66
"backlog-mcp-server": "./build/index.js"

0 commit comments

Comments
 (0)