@lemmaoracle/mcp 0.0.16 → 0.0.17
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.ja.md +19 -1
- package/README.md +19 -1
- package/package.json +2 -2
package/README.ja.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# `@lemmaoracle/mcp`
|
|
2
2
|
|
|
3
|
+
[](https://smithery.ai/servers/lemmaoracle/lemma)
|
|
4
|
+
[](https://www.npmjs.com/package/@lemmaoracle/mcp)
|
|
5
|
+
|
|
3
6
|
`@lemmaoracle/mcp` は、AI エージェントが Lemma の検証可能なプロベナンス層に
|
|
4
7
|
アクセスするための **Model Context Protocol (MCP) サーバー**です。
|
|
5
8
|
機密ドキュメントから暗号学的に検証された属性(ゼロ知識証明・選択的開示・
|
|
@@ -19,7 +22,22 @@ Lemma の検証済み属性 API に対するリードオンリーの **tools**
|
|
|
19
22
|
は v0.0.x では公開しません。書き込み系 tools(`register_document` /
|
|
20
23
|
`submit_proof`)は Phase 2 で対応予定です。
|
|
21
24
|
|
|
22
|
-
##
|
|
25
|
+
## クイックスタート
|
|
26
|
+
|
|
27
|
+
エージェントのセットアップに合わせて、2 通りから選んでください。
|
|
28
|
+
|
|
29
|
+
### 方法 1 — Smithery(ホスト型ゲートウェイ、インストール不要)
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npx -y smithery mcp add lemmaoracle/lemma
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Smithery が `https://lemma--lemmaoracle.run.tools` へプロキシし、
|
|
36
|
+
Lemma API キーを尋ねます。手早く試したいとき、または既に Smithery を使っている
|
|
37
|
+
エージェントから接続するときに便利です。サーバーページ:
|
|
38
|
+
[smithery.ai/servers/lemmaoracle/lemma](https://smithery.ai/servers/lemmaoracle/lemma)。
|
|
39
|
+
|
|
40
|
+
### 方法 2 — Claude Desktop + npx(stdio)
|
|
23
41
|
|
|
24
42
|
Claude Desktop の MCP 設定に以下を追加してください:
|
|
25
43
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# `@lemmaoracle/mcp`
|
|
2
2
|
|
|
3
|
+
[](https://smithery.ai/servers/lemmaoracle/lemma)
|
|
4
|
+
[](https://www.npmjs.com/package/@lemmaoracle/mcp)
|
|
5
|
+
|
|
3
6
|
`@lemmaoracle/mcp` is the **Model Context Protocol (MCP) server** that gives
|
|
4
7
|
AI agents access to Lemma's verifiable provenance layer — query
|
|
5
8
|
cryptographically verified attributes (zero-knowledge proofs, selective
|
|
@@ -21,7 +24,22 @@ The current MVP exposes **5 read tools**. **Resources** and **prompts** are
|
|
|
21
24
|
not exposed in v0.0.x; write tools (`register_document`, `submit_proof`)
|
|
22
25
|
are planned for Phase 2.
|
|
23
26
|
|
|
24
|
-
## Quick start
|
|
27
|
+
## Quick start
|
|
28
|
+
|
|
29
|
+
Two ways to connect — pick whichever matches your agent setup.
|
|
30
|
+
|
|
31
|
+
### Option 1 — Smithery (hosted gateway, zero install)
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
npx -y smithery mcp add lemmaoracle/lemma
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Smithery proxies to the Lemma MCP endpoint at `https://lemma--lemmaoracle.run.tools`
|
|
38
|
+
and prompts for your Lemma API key. Best for trying the server quickly or for
|
|
39
|
+
agents that already speak Smithery. Server page:
|
|
40
|
+
[smithery.ai/servers/lemmaoracle/lemma](https://smithery.ai/servers/lemmaoracle/lemma).
|
|
41
|
+
|
|
42
|
+
### Option 2 — Claude Desktop with npx (stdio)
|
|
25
43
|
|
|
26
44
|
Add this to your Claude Desktop MCP config:
|
|
27
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemmaoracle/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "MCP server for Lemma Oracle API",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"mcpName": "io.github.lemmaoracle/mcp",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"test": "vitest run"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@lemmaoracle/sdk": "^0.0.
|
|
38
|
+
"@lemmaoracle/sdk": "^0.0.32",
|
|
39
39
|
"@lemmaoracle/spec": "^0.0.30",
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
41
41
|
"agents": "^0.11.4",
|