@proofofprotocol/inscribe-mcp 0.3.0 → 0.3.1
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.
- package/README.md +9 -1
- package/package.json +1 -1
- package/src/cli/commands/setup-mcp.js +1 -1
package/README.md
CHANGED
|
@@ -45,13 +45,21 @@ Hedera Testnet アカウントは [portal.hedera.com](https://portal.hedera.com)
|
|
|
45
45
|
|
|
46
46
|
### 3. Claude Desktop に接続
|
|
47
47
|
|
|
48
|
+
```bash
|
|
49
|
+
# 自動設定(推奨)
|
|
50
|
+
inscribe-mcp setup-mcp --claude-desktop
|
|
51
|
+
|
|
52
|
+
# または手動設定
|
|
53
|
+
inscribe-mcp setup-mcp --show-json
|
|
54
|
+
```
|
|
55
|
+
|
|
48
56
|
`claude_desktop_config.json`:
|
|
49
57
|
```json
|
|
50
58
|
{
|
|
51
59
|
"mcpServers": {
|
|
52
60
|
"inscribe": {
|
|
53
61
|
"command": "npx",
|
|
54
|
-
"args": ["@proofofprotocol/inscribe-mcp-server"]
|
|
62
|
+
"args": ["-y", "@proofofprotocol/inscribe-mcp", "inscribe-mcp-server"]
|
|
55
63
|
}
|
|
56
64
|
}
|
|
57
65
|
}
|
package/package.json
CHANGED
|
@@ -53,7 +53,7 @@ function getClaudeDesktopConfigPath() {
|
|
|
53
53
|
// MCP server config for inscribe
|
|
54
54
|
const INSCRIBE_MCP_CONFIG = {
|
|
55
55
|
command: 'npx',
|
|
56
|
-
args: ['@proofofprotocol/inscribe-mcp-server']
|
|
56
|
+
args: ['-y', '@proofofprotocol/inscribe-mcp', 'inscribe-mcp-server']
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
// Generate JSON snippet for display
|