@varun-ai07/covenant-mcp 1.0.0 → 1.0.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.
- package/README.md +6 -6
- package/dist/abis/AgentCollective.json +648 -0
- package/dist/abis/AgentInsurance.json +737 -0
- package/dist/abis/AgentRegistry.json +760 -0
- package/dist/abis/DisputeArbitration.json +520 -0
- package/dist/abis/OpenTaskMarket.json +979 -0
- package/dist/abis/ParallelTaskBatch.json +521 -0
- package/dist/abis/ReceiptVerifier.json +513 -0
- package/dist/abis/TaskEscrow.json +1683 -0
- package/dist/cli.js +8 -8
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +22 -37
- package/dist/config.js.map +1 -1
- package/dist/postinstall.js +5 -5
- package/dist/postinstall.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ The COVENANT MCP Server exposes all COVENANT smart contract functionality throug
|
|
|
29
29
|
The fastest way to add COVENANT to Claude Code:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx @covenant
|
|
32
|
+
npx @varun-ai07/covenant-mcp add
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
This command:
|
|
@@ -40,10 +40,10 @@ This command:
|
|
|
40
40
|
### Available CLI Commands
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
npx @covenant
|
|
44
|
-
npx @covenant
|
|
45
|
-
npx @covenant
|
|
46
|
-
npx @covenant
|
|
43
|
+
npx @varun-ai07/covenant-mcp add # Add to Claude Code configuration
|
|
44
|
+
npx @varun-ai07/covenant-mcp remove # Remove from Claude Code
|
|
45
|
+
npx @varun-ai07/covenant-mcp status # Check installation status
|
|
46
|
+
npx @varun-ai07/covenant-mcp start # Start the MCP server manually
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
---
|
|
@@ -97,7 +97,7 @@ MCP_HTTP_PORT=3001
|
|
|
97
97
|
### One-Command Install (Recommended)
|
|
98
98
|
|
|
99
99
|
```bash
|
|
100
|
-
npx @covenant
|
|
100
|
+
npx @varun-ai07/covenant-mcp add
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
### Manual Configuration
|