@@ -16,7 +16,7 @@ const __dirname = path.dirname(__filename);
1616const DOCS_DIR = path . join ( __dirname , '..' , 'docs' ) ;
1717
1818// 利用可能なカテゴリー
19- const AVAILABLE_CATEGORIES = [ 'manual' , 'content-api' , 'management-api' , 'image-api' ] as const ;
19+ const AVAILABLE_CATEGORIES = [ 'manual' , 'content-api' , 'management-api' , 'image-api' , 'mcp-server' ] as const ;
2020type Category = typeof AVAILABLE_CATEGORIES [ number ] ;
2121
2222const server = new Server (
@@ -51,8 +51,8 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
5151 properties : {
5252 category : {
5353 type : 'string' ,
54- description : '検索するカテゴリー(マニュアル: manual, content-api, management-api, image-api)。指定しない場合は全カテゴリーを対象とします。' ,
55- enum : [ 'manual' , 'content-api' , 'management-api' , 'image-api' ] ,
54+ description : '検索するカテゴリー(マニュアル: manual, content-api, management-api, image-api, mcp-server )。指定しない場合は全カテゴリーを対象とします。' ,
55+ enum : [ 'manual' , 'content-api' , 'management-api' , 'image-api' , 'mcp-server' ] ,
5656 } ,
5757 } ,
5858 required : [ ] ,
@@ -70,8 +70,8 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
7070 } ,
7171 category : {
7272 type : 'string' ,
73- description : '検索するカテゴリー(manual, content-api, management-api, image-api)。指定しない場合は全カテゴリーから検索します。' ,
74- enum : [ 'manual' , 'content-api' , 'management-api' , 'image-api' ] ,
73+ description : '検索するカテゴリー(manual, content-api, management-api, image-api, mcp-server )。指定しない場合は全カテゴリーから検索します。' ,
74+ enum : [ 'manual' , 'content-api' , 'management-api' , 'image-api' , 'mcp-server' ] ,
7575 } ,
7676 } ,
7777 required : [ 'filename' ] ,
0 commit comments