microCMS Document MCP Server
Officialby microcmsio
README.md
# microCMS Document MCP Server
microCMS ドキュメントにアクセスするための Model Context Protocol (MCP) サーバーです。
## 概要
この MCP サーバーは、microCMSの提供するドキュメントへのアクセスを提供します。
AI アシスタントが最新のドキュメント内容を検索・取得できるようにします。
## MCP クライアントの設定
### 方法1. Cursorに設定する
Cursorに導入する場合、以下のリンクをブラウザに貼り付けてインストールできます。
```
cursor://anysphere.cursor-deeplink/mcp/install?name=microcms-document&config=eyJjb21tYW5kIjoibnB4IC15IG1pY3JvY21zLWRvY3VtZW50LW1jcC1zZXJ2ZXIifQ%3D%3D
```
### 方法2. Claude Codeに設定する
Claude Codeに導入する場合、以下のコマンドを実行で設定を追加できます。
```
claude mcp add microcms-document -- npx -y microcms-document-mcp-server
```
### 方法3. MCP Bundle (MCPB) を使う
Claude Desktopに導入する場合、MCPBファイルを使って簡単にインストールできます。
1. [リリースページ](https://github.com/microcmsio/microcms-document-mcp-server/releases) から最新の `microcms-document-mcp-server.mcpb` をダウンロード
2. ダウンロードしたmcpbファイルをダブルクリックで開く
### 方法4. その他のMCPクライアントに設定する
その他のMCPクライアントに導入する場合、設定ファイルに以下を追加してください。
```json
{
"mcpServers": {
"microcms-document": {
"command": "npx",
"args": ["-y", "microcms-document-mcp-server"]
}
}
}
```
## 利用方法
セットアップ後、microCMSについての質問をするとAIが必要に応じてドキュメントを読み、回答します。
チャットの文章に `use microcms-docs-mcp` と書くと明示的にMCPの利用を依頼することもできます。
microCMSの仕様について質問する
```
microCMSで、下書きで登録済みのコンテンツをAPI経由で公開したい。
どのようなリクエストを送ればいい?
```
microCMSのドキュメントを読みながら実装してもらう
```
microCMSで、特定の日付以降に更新されたコンテンツの一覧を取得するスクリプトを作ります。
- 環境変数でサービスIDとAPIキーを指定
- コマンドライン引数でAPIエンドポイントと基準となる日付を指定
- 結果は整形して表示
言語はJavaScriptでお願いします。
use microcms-docs-mcp
```
## 利用可能なツール
### fetch_general
microCMSの一般的な情報を返します。
### list_documents
`docs` ディレクトリ内の利用可能なドキュメントファイル名の配列を返します。
### search_document
指定されたドキュメントファイルの内容を取得します。
## ライセンス
このプロジェクトは MIT ライセンスの下で公開されています。
TDQS
A4.2/5.0
Scored across 3 tools
Disambiguation5/5
Each tool serves a distinct purpose: fetch_general provides an overview, list_documents enumerates available files, and search_document retrieves specific file content. No overlap.
Naming Consistency5/5
All tools use the verb_noun naming pattern with underscores (fetch_general, list_documents, search_document), providing clear and predictable naming.
Tool Count5/5
Three tools are appropriate for a documentation server: one for overview, one for listing, one for retrieval. The count is well-scoped for the stated purpose.
Completeness4/5
The toolset covers basic read operations but lacks full-text search across all documents. However, the workflow (general → list → search) enables comprehensive Q&A, so only a minor gap exists.
Maintenance
ActivityActive
ResponsivenessNo issues