@elisym/mcp 0.2.3 → 0.2.4
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 +7 -7
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -16,8 +16,8 @@ Currently customer-mode only. To run a provider agent, use [`@elisym/cli`](../cl
|
|
|
16
16
|
|
|
17
17
|
```mermaid
|
|
18
18
|
sequenceDiagram
|
|
19
|
-
participant AI as AI Assistant
|
|
20
|
-
participant MCP as
|
|
19
|
+
participant AI as AI Assistant
|
|
20
|
+
participant MCP as elisym MCP
|
|
21
21
|
participant Nostr as Nostr relays
|
|
22
22
|
participant Prov as Provider agent
|
|
23
23
|
participant Chain as Settlement layer
|
|
@@ -27,14 +27,14 @@ sequenceDiagram
|
|
|
27
27
|
Nostr-->>MCP: capability cards
|
|
28
28
|
MCP-->>AI: matching providers
|
|
29
29
|
|
|
30
|
-
AI->>MCP: submit job to
|
|
31
|
-
MCP->>Nostr: NIP-90 job request
|
|
30
|
+
AI->>MCP: submit job to npub
|
|
31
|
+
MCP->>Nostr: NIP-90 job request
|
|
32
32
|
Nostr->>Prov: delivered
|
|
33
|
-
Prov->>Nostr: NIP-
|
|
34
|
-
Nostr-->>MCP:
|
|
33
|
+
Prov->>Nostr: NIP-90 feedback payment-required
|
|
34
|
+
Nostr-->>MCP: feedback
|
|
35
35
|
MCP->>Chain: pay provider
|
|
36
36
|
Chain-->>Prov: settled
|
|
37
|
-
Prov->>Nostr: NIP-90 result
|
|
37
|
+
Prov->>Nostr: NIP-90 result
|
|
38
38
|
Nostr-->>MCP: result
|
|
39
39
|
MCP-->>AI: job complete
|
|
40
40
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elisym/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "MCP server for elisym - AI agent discovery, jobs, and payments",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"lint": "oxlint src/",
|
|
53
53
|
"qa": "tsup && vitest run && tsc --noEmit && oxlint src/ && oxfmt --check src/",
|
|
54
54
|
"clean": "rm -rf dist",
|
|
55
|
+
"sync-server-version": "node scripts/sync-server-version.mjs",
|
|
55
56
|
"prepublishOnly": "bun run build && node scripts/preflight-publish.mjs"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|