@uvrn/mcp 1.0.0 → 1.0.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 +15 -12
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -328,6 +328,12 @@ See [ENVIRONMENT.md](./ENVIRONMENT.md) for detailed configuration options.
|
|
|
328
328
|
LOG_LEVEL=debug MAX_BUNDLE_SIZE=20971520 npx @uvrn/mcp
|
|
329
329
|
```
|
|
330
330
|
|
|
331
|
+
## Use cases
|
|
332
|
+
|
|
333
|
+
- **Use the Delta Engine from an AI assistant** — Run bundles, validate, and verify receipts via MCP tools (e.g. Claude Desktop) without writing adapter code.
|
|
334
|
+
- **Expose schemas to agents** — Resources provide bundle and receipt JSON schemas so agents can construct valid payloads.
|
|
335
|
+
- **Guided prompts** — Use the built-in prompts (e.g. verify_data, create_bundle) to walk users through verification or bundle creation.
|
|
336
|
+
|
|
331
337
|
## Troubleshooting
|
|
332
338
|
|
|
333
339
|
### Server doesn't appear in Claude Desktop
|
|
@@ -381,13 +387,13 @@ import type { DeltaBundle, DeltaReceipt } from '@uvrn/mcp';
|
|
|
381
387
|
|
|
382
388
|
## Development
|
|
383
389
|
|
|
384
|
-
### Building from
|
|
390
|
+
### Building from source
|
|
385
391
|
|
|
386
392
|
```bash
|
|
387
|
-
git clone https://github.com/
|
|
388
|
-
cd
|
|
389
|
-
|
|
390
|
-
|
|
393
|
+
git clone https://github.com/UVRN-org/uvrn-packages.git
|
|
394
|
+
cd uvrn-packages/uvrn-mcp
|
|
395
|
+
pnpm install
|
|
396
|
+
pnpm run build
|
|
391
397
|
```
|
|
392
398
|
|
|
393
399
|
### Running Tests
|
|
@@ -436,11 +442,8 @@ graph LR
|
|
|
436
442
|
|
|
437
443
|
MIT
|
|
438
444
|
|
|
439
|
-
##
|
|
440
|
-
|
|
441
|
-
- [Loosechain Delta Engine Core](../uvrn-core) - Core engine functionality
|
|
442
|
-
- [MCP Protocol Specification](https://modelcontextprotocol.io/) - Official MCP docs
|
|
443
|
-
|
|
444
|
-
---
|
|
445
|
+
## Links
|
|
445
446
|
|
|
446
|
-
|
|
447
|
+
- [Repository](https://github.com/UVRN-org/uvrn-packages) — monorepo (this package: `uvrn-mcp`)
|
|
448
|
+
- [@uvrn/core](https://www.npmjs.com/package/@uvrn/core) — Delta Engine core
|
|
449
|
+
- [MCP Protocol](https://modelcontextprotocol.io/) — Model Context Protocol specification
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uvrn/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "UVRN MCP server — AI-native bundle processing",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,9 +16,15 @@
|
|
|
16
16
|
],
|
|
17
17
|
"author": "UVRN",
|
|
18
18
|
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/UVRN-org/uvrn-packages.git",
|
|
22
|
+
"directory": "uvrn-mcp"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
|
|
19
25
|
"dependencies": {
|
|
20
26
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
21
|
-
"@uvrn/core": "1.0.
|
|
27
|
+
"@uvrn/core": "1.0.1"
|
|
22
28
|
},
|
|
23
29
|
"devDependencies": {
|
|
24
30
|
"@types/node": "^20.0.0",
|