-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.92 KB
/
manifest.json
File metadata and controls
49 lines (49 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"manifest_version": "0.2",
"name": "microcms-document",
"version": "0.2.4",
"display_name": "microCMS Document MCP Server",
"description": "microCMSのドキュメントにアクセスするための Model Context Protocol (MCP) サーバーです。AIアシスタントがmicroCMSの最新ドキュメント内容を検索・取得できるようにします。",
"author": {
"name": "microcmsio",
"url": "https://github.com/microcmsio"
},
"icon": "assets/icon.png",
"license": "MIT",
"homepage": "https://github.com/microcmsio/microcms-document-mcp-server",
"repository": {
"type": "git",
"url": "https://github.com/microcmsio/microcms-document-mcp-server"
},
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
]
}
},
"tools": [
{
"name": "fetch_general",
"description": "microCMSについての質問に答える場合、まずこのツールを利用します。microCMS全体の概要や共通情報が書かれたドキュメントを返します。"
},
{
"name": "list_documents",
"description": "microCMSのドキュメントディレクトリのファイル名一覧を返します。カテゴリーを指定することで特定のサブディレクトリのみを対象にできます。"
},
{
"name": "search_document",
"description": "指定されたファイル名のmicroCMSドキュメントを検索し、内容を返します。カテゴリーを指定することで特定のサブディレクトリのみを対象にできます。"
}
],
"keywords": [
"microcms",
"headless-cms",
"documentation",
"api",
"mcp"
]
}