obyte-mcp 0.1.0 → 0.1.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 CHANGED
@@ -486,6 +486,70 @@ npm run build
486
486
  npx -y @modelcontextprotocol/inspector node dist/index.js --network mainnet
487
487
  ```
488
488
 
489
+ ## Directory Listings
490
+
491
+ ### MCP.Directory
492
+
493
+ Submit the server at:
494
+
495
+ ```text
496
+ https://mcp.directory/submit
497
+ ```
498
+
499
+ Use:
500
+
501
+ - GitHub Repository URL: `https://github.com/Taump/obyte-mcp`
502
+ - npm Package: `obyte-mcp`
503
+ - Short Description:
504
+
505
+ ```text
506
+ Local stdio MCP server for querying Obyte hubs, autonomous agents, balances, AA state, AA dry runs, and token symbols.
507
+ ```
508
+
509
+ MCP.Directory says it auto-pulls metadata from GitHub, detects tools from the MCP implementation, generates install configurations for major clients, reviews the submission, and publishes it to the directory. Make sure the GitHub repository is pushed and the README is current before submitting.
510
+
511
+ ### Official MCP Registry
512
+
513
+ The official registry hosts metadata, not package artifacts. The npm package must already be published, and npm ownership is verified through the `mcpName` field in `package.json`.
514
+
515
+ This package uses:
516
+
517
+ ```json
518
+ {
519
+ "mcpName": "io.github.taump/obyte-mcp"
520
+ }
521
+ ```
522
+
523
+ The matching registry metadata is in `server.json`.
524
+
525
+ Because `0.1.0` was published before `mcpName` was added, publish a new npm version first:
526
+
527
+ ```bash
528
+ npm run typecheck
529
+ npm test
530
+ npm run build
531
+ npm publish
532
+ ```
533
+
534
+ Then install and use `mcp-publisher`:
535
+
536
+ ```bash
537
+ # macOS/Linux via release tarball
538
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
539
+ sudo mv mcp-publisher /usr/local/bin/
540
+
541
+ mcp-publisher login github
542
+ mcp-publisher publish
543
+ ```
544
+
545
+ Verify publication:
546
+
547
+ ```bash
548
+ curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.taump/obyte-mcp"
549
+ ```
550
+
551
+ With GitHub authentication, the registry namespace must match the GitHub owner. This project uses `io.github.taump/obyte-mcp`, so publish while authenticated as the GitHub account that owns `Taump/obyte-mcp`, or publish from a GitHub Action in that repository.
552
+
489
553
  ## Local Development
490
554
 
491
555
  ```bash
@@ -544,8 +608,10 @@ Also:
544
608
  - Test Codex config.
545
609
  - Test Claude Desktop config.
546
610
  - Test Claude Code command with the required `--`.
611
+ - Publish npm version containing `mcpName`.
612
+ - Publish `server.json` to the Official MCP Registry with `mcp-publisher`.
613
+ - Submit `https://github.com/Taump/obyte-mcp` and npm package `obyte-mcp` to MCP.Directory.
547
614
  - Update version-tested notes in this README.
548
615
  - Verify README examples match actual CLI output.
549
616
  - Publish with npm provenance if available.
550
617
  - Create a GitHub release with changelog and compatibility notes.
551
-
@@ -1,5 +1,5 @@
1
1
  export declare const PACKAGE_NAME = "obyte-mcp";
2
- export declare const PACKAGE_VERSION = "0.1.0";
2
+ export declare const PACKAGE_VERSION = "0.1.1";
3
3
  export declare const MAINNET_HUB = "https://obyte.org/api";
4
4
  export declare const TESTNET_HUB = "https://testnet.obyte.org/api";
5
5
  export declare const MAINNET_TOKEN_REGISTRY_ADDRESS = "O6H6ZIFI57X3PLTYHOCVYPP5A553CYFQ";
package/dist/constants.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export const PACKAGE_NAME = "obyte-mcp";
2
- export const PACKAGE_VERSION = "0.1.0";
2
+ export const PACKAGE_VERSION = "0.1.1";
3
3
  export const MAINNET_HUB = "https://obyte.org/api";
4
4
  export const TESTNET_HUB = "https://testnet.obyte.org/api";
5
5
  export const MAINNET_TOKEN_REGISTRY_ADDRESS = "O6H6ZIFI57X3PLTYHOCVYPP5A553CYFQ";
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "obyte-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
+ "mcpName": "io.github.taump/obyte-mcp",
4
5
  "description": "Local stdio MCP server for querying Obyte hubs.",
5
6
  "type": "module",
6
7
  "bin": {
@@ -9,7 +10,8 @@
9
10
  "files": [
10
11
  "dist",
11
12
  "README.md",
12
- "LICENSE"
13
+ "LICENSE",
14
+ "server.json"
13
15
  ],
14
16
  "engines": {
15
17
  "node": ">=20"
package/server.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.taump/obyte-mcp",
4
+ "title": "Obyte MCP",
5
+ "description": "Local stdio MCP server for querying Obyte hubs, autonomous agents, balances, units, AA state, AA dry runs, and token symbols.",
6
+ "websiteUrl": "https://github.com/Taump/obyte-mcp",
7
+ "repository": {
8
+ "url": "https://github.com/Taump/obyte-mcp",
9
+ "source": "github"
10
+ },
11
+ "version": "0.1.1",
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "registryBaseUrl": "https://registry.npmjs.org",
16
+ "identifier": "obyte-mcp",
17
+ "version": "0.1.1",
18
+ "runtimeHint": "npx",
19
+ "transport": {
20
+ "type": "stdio"
21
+ },
22
+ "packageArguments": [
23
+ {
24
+ "type": "named",
25
+ "name": "--network",
26
+ "description": "Obyte network to query.",
27
+ "default": "mainnet",
28
+ "choices": ["mainnet", "testnet"]
29
+ },
30
+ {
31
+ "type": "named",
32
+ "name": "--hub",
33
+ "description": "Custom Obyte hub URL. Must be https, except http localhost is allowed for development.",
34
+ "isRequired": false
35
+ },
36
+ {
37
+ "type": "named",
38
+ "name": "--token-registry",
39
+ "description": "Token registry AA address. Mainnet has a default; testnet symbol lookups need an explicit registry when used.",
40
+ "isRequired": false
41
+ }
42
+ ],
43
+ "environmentVariables": [
44
+ {
45
+ "name": "OBYTE_NETWORK",
46
+ "description": "Obyte network to query.",
47
+ "default": "mainnet",
48
+ "choices": ["mainnet", "testnet"],
49
+ "isRequired": false,
50
+ "isSecret": false
51
+ },
52
+ {
53
+ "name": "OBYTE_HUB_ADDRESS",
54
+ "description": "Custom Obyte hub URL. Must be https, except http localhost is allowed for development.",
55
+ "isRequired": false,
56
+ "isSecret": false
57
+ },
58
+ {
59
+ "name": "OBYTE_TOKEN_REGISTRY_ADDRESS",
60
+ "description": "Token registry AA address for symbol and decimals lookups.",
61
+ "isRequired": false,
62
+ "isSecret": false
63
+ }
64
+ ]
65
+ }
66
+ ],
67
+ "_meta": {
68
+ "io.modelcontextprotocol.registry/publisher-provided": {
69
+ "tools": ["npm", "mcp-publisher"],
70
+ "transport": "stdio",
71
+ "networkDefaults": {
72
+ "mainnetHub": "https://obyte.org/api",
73
+ "testnetHub": "https://testnet.obyte.org/api"
74
+ }
75
+ }
76
+ }
77
+ }