microcms-mcp-server 0.3.5 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -4
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -3,21 +3,20 @@
3
3
  [microCMS](https://microcms.io/) のMCP(Model Context Protocol)サーバーです。
4
4
  ClaudeなどのAIアシスタントがmicroCMSのコンテンツ管理システムとやり取りできるようにします。
5
5
 
6
-
7
6
  ## 必要なもの
8
7
 
9
8
  - microCMSのサービスIDとAPIキー
10
9
 
11
10
  ## セットアップ
12
11
 
13
- ### 方法1: Desktop Extension (DXT)をつかう
12
+ ### 方法1: Desktop Extension (DXT) をつかう
14
13
 
15
14
  Claude Desktopに導入する場合、dxtファイルを使って簡単にインストールできます。
16
15
 
17
- 1. [microcms-mcp-server.dxt](https://github.com/himaratsu/microcms-mcp-server/blob/main/microcms-mcp-server.dxt) をダウンロード
16
+ 1. [リリースページ](https://github.com/microcmsio/microcms-mcp-server/releases) から最新の `microcms-mcp-server.dxt` をダウンロード
18
17
  2. Claude Desktopを起動し、設定 > エクステンション を開く
19
18
  3. ダウンロードしたdxtファイルをClaude Desktopにドラッグ&ドロップ
20
- 4. サービスIDとAPIキーを
19
+ 4. サービスIDとAPIキーを設定する
21
20
 
22
21
 
23
22
  ### 方法2: npx をつかう
@@ -69,6 +68,14 @@ microCMSのコンテンツを取得してレビューしてもらう
69
68
  microCMSの xxxxxx のコンテンツを取得して、日本語的におかしい部分があれば指摘して
70
69
  ```
71
70
 
71
+ microCMSのメディア一覧に画像をアップロードする
72
+ ```
73
+ 次の画像をmicroCMSにアップロードして。
74
+
75
+ - https://example.com/sample-image-1.png
76
+ - https://example.com/sample-image-2.png
77
+ - https://example.com/sample-image-3.png
78
+ ```
72
79
 
73
80
  ### より詳しい使い方
74
81
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "microcms-mcp-server",
3
- "version": "0.3.5",
4
- "description": "microCMS MCP Server - A Model Context Protocol server for microCMS API",
3
+ "version": "0.3.6",
4
+ "description": "microCMS MCP Server - microCMSのコンテンツAPIやマネジメントAPIを利用し、LLMからコンテンツ管理ができるMCPサーバー",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
7
  "bin": {
@@ -34,17 +34,17 @@
34
34
  "cli"
35
35
  ],
36
36
  "author": {
37
- "name": "himaratsu",
38
- "url": "https://github.com/himaratsu"
37
+ "name": "microcmsio",
38
+ "url": "https://github.com/microcmsio"
39
39
  },
40
40
  "repository": {
41
41
  "type": "git",
42
- "url": "git+https://github.com/himaratsu/microcms-mcp-server.git"
42
+ "url": "git+https://github.com/microcmsio/microcms-mcp-server.git"
43
43
  },
44
44
  "bugs": {
45
- "url": "https://github.com/himaratsu/microcms-mcp-server/issues"
45
+ "url": "https://github.com/microcmsio/microcms-mcp-server/issues"
46
46
  },
47
- "homepage": "https://github.com/himaratsu/microcms-mcp-server#readme",
47
+ "homepage": "https://github.com/microcmsio/microcms-mcp-server#readme",
48
48
  "license": "MIT",
49
49
  "dependencies": {
50
50
  "@modelcontextprotocol/sdk": "^1.0.0",
@@ -64,4 +64,4 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  }
67
- }
67
+ }