@robotdomainsearch/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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/install.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -63,7 +63,7 @@ robotdomainsearch-mcp
63
63
 
64
64
  ## How It Works
65
65
 
66
- This npm package wraps a prebuilt Go binary. During `npm install`, the correct binary for your platform is downloaded from [GitHub Releases](https://github.com/erickuhn19/RobotDomainSearch-API/releases).
66
+ This npm package wraps a prebuilt Go binary. During `npm install`, the correct binary for your platform is downloaded from [GitHub Releases](https://github.com/robotdomainsearch/releases/releases).
67
67
 
68
68
  ### Supported Platforms
69
69
 
@@ -81,14 +81,14 @@ The MCP server connects to the public RobotDomainSearch API by default. No API k
81
81
  | Environment Variable | Default | Description |
82
82
  |---------------------|---------|-------------|
83
83
  | `RDS_API_URL` | `https://api.robotdomainsearch.com` | API base URL |
84
- | `RDS_ENS_URL` | `https://ens.robotdomainsearch.com` | ENS service URL |
84
+ | `RDS_ENS_URL` | `https://ens.domainkit.bot` | ENS service URL |
85
85
 
86
86
  ## Links
87
87
 
88
88
  - **Website:** [robotdomainsearch.com](https://robotdomainsearch.com)
89
89
  - **MCP Page:** [robotdomainsearch.com/mcp](https://robotdomainsearch.com/mcp/)
90
90
  - **API Docs:** [robotdomainsearch.com/docs](https://robotdomainsearch.com/docs/)
91
- - **GitHub:** [erickuhn19/RobotDomainSearch-API](https://github.com/erickuhn19/RobotDomainSearch-API)
91
+ - **GitHub:** [robotdomainsearch/releases](https://github.com/robotdomainsearch/releases)
92
92
 
93
93
  ## License
94
94
 
package/install.js CHANGED
@@ -8,7 +8,7 @@ const fs = require("fs");
8
8
  const path = require("path");
9
9
  const { execSync } = require("child_process");
10
10
 
11
- const REPO = "erickuhn19/RobotDomainSearch-API";
11
+ const REPO = "robotdomainsearch/releases";
12
12
  const BIN_DIR = path.join(__dirname, "bin");
13
13
  const BIN_NAME = "robotdomainsearch-mcp";
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotdomainsearch/mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "RobotDomainSearch MCP Server — domain intelligence for AI agents",
5
5
  "bin": {
6
6
  "robotdomainsearch-mcp": "./index.js"
@@ -23,11 +23,11 @@
23
23
  "license": "MIT",
24
24
  "repository": {
25
25
  "type": "git",
26
- "url": "https://github.com/erickuhn19/RobotDomainSearch-API"
26
+ "url": "https://github.com/robotdomainsearch/releases"
27
27
  },
28
28
  "homepage": "https://robotdomainsearch.com/mcp/",
29
29
  "bugs": {
30
- "url": "https://github.com/erickuhn19/RobotDomainSearch-API/issues"
30
+ "url": "https://github.com/robotdomainsearch/releases/issues"
31
31
  },
32
32
  "files": [
33
33
  "index.js",