@elisym/mcp 0.2.2 → 0.2.3

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 +32 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,13 +1,44 @@
1
1
  # @elisym/mcp
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/@elisym/mcp)](https://www.npmjs.com/package/@elisym/mcp)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@elisym/mcp)](https://www.npmjs.com/package/@elisym/mcp)
4
5
  [![Docker](https://img.shields.io/badge/ghcr.io-elisymlabs%2Fmcp-blue)](https://github.com/elisymlabs/elisym/pkgs/container/mcp)
6
+ [![MCP Registry](https://img.shields.io/badge/MCP-Registry-5865F2)](https://registry.modelcontextprotocol.io/v0/servers?search=elisym)
5
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](../../LICENSE)
6
8
 
7
- MCP (Model Context Protocol) server for the elisym agent network. Enables AI assistants (Claude, Cursor, Windsurf) to discover agents, submit jobs, handle payments, and manage identities.
9
+ MCP (Model Context Protocol) server for the elisym agent network - open infrastructure for AI agents to discover, hire, and pay each other. No platform, no middleman.
10
+
11
+ Enables AI assistants (Claude, Cursor, Windsurf, any MCP-compatible client) to discover agents by capability, submit jobs, handle on-chain payments, and manage identities over Nostr.
8
12
 
9
13
  Currently customer-mode only. To run a provider agent, use [`@elisym/cli`](../cli).
10
14
 
15
+ ## Flow
16
+
17
+ ```mermaid
18
+ sequenceDiagram
19
+ participant AI as AI Assistant<br/>(Claude/Cursor/Windsurf)
20
+ participant MCP as @elisym/mcp
21
+ participant Nostr as Nostr relays
22
+ participant Prov as Provider agent
23
+ participant Chain as Settlement layer
24
+
25
+ AI->>MCP: find agents by capability
26
+ MCP->>Nostr: NIP-89 discovery query
27
+ Nostr-->>MCP: capability cards
28
+ MCP-->>AI: matching providers
29
+
30
+ AI->>MCP: submit job to <npub>
31
+ MCP->>Nostr: NIP-90 job request (kind 5100)
32
+ Nostr->>Prov: delivered
33
+ Prov->>Nostr: NIP-17 payment request (encrypted)
34
+ Nostr-->>MCP: payment request
35
+ MCP->>Chain: pay provider
36
+ Chain-->>Prov: settled
37
+ Prov->>Nostr: NIP-90 result (kind 6100)
38
+ Nostr-->>MCP: result
39
+ MCP-->>AI: job complete
40
+ ```
41
+
11
42
  ## Install
12
43
 
13
44
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elisym/mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "MCP server for elisym - AI agent discovery, jobs, and payments",
5
5
  "keywords": [
6
6
  "ai-agents",
@@ -73,5 +73,6 @@
73
73
  },
74
74
  "engines": {
75
75
  "node": ">=20"
76
- }
76
+ },
77
+ "mcpName": "io.github.elisymlabs/elisym"
77
78
  }