Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# ベースイメージ
FROM node:18-alpine as base

Expand Down Expand Up @@ -26,4 +27,4 @@ WORKDIR /app
COPY --from=build /app/package*.json ./
COPY --from=build /app/build ./build
RUN npm install --production
CMD ["node", "build/index.js"]
CMD ["node", "build/index.js"]
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Backlog MCP Server

[![smithery badge](https://smithery.ai/badge/@jootsuki/backlog-mcp-server)](https://smithery.ai/server/@jootsuki/backlog-mcp-server)

BacklogのAPIに接続するMCPサーバーです。課題の検索、取得、更新機能を提供します。

## 機能
Expand Down Expand Up @@ -101,4 +103,4 @@ Cursor:https://note.com/shuzon__/n/na2aafacf7324 →[Notion MCP Server を Cur
# 課題の更新
・PROJECT1-100の課題のステータスを完了にして
・PROJECT1-100の課題に「〜〜〜」とコメントして
```
```
24 changes: 24 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['build/index.js'], env: { BACKLOG_SPACE_URL: config.backlogSpaceUrl, BACKLOG_API_KEY: config.backlogApiKey } })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- backlogSpaceUrl
- backlogApiKey
properties:
backlogSpaceUrl:
type: string
description: URL of your Backlog space (e.g. https://your-space.backlog.com)
backlogApiKey:
type: string
description: Your Backlog API key
exampleConfig:
backlogSpaceUrl: https://your-space.backlog.com
backlogApiKey: your_api_key