rhombus-node-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 (2) hide show
  1. package/README.md +9 -29
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,40 +4,28 @@ An MCP server implementation that integrates the Rhombus API to provide Chatbot
4
4
 
5
5
  ## Configuration
6
6
 
7
- ### Step 1:
8
-
9
- Clone this repository:
10
-
11
- ```bash
12
- git clone git@github.com:RhombusSystems/rhombus-node-mcp.git
13
- ```
14
-
15
- Navigate to the `rhombus-node-mcp` directory and install the necessary dependencies:
16
-
17
- ```bash
18
- cd rhombus-node-mcp && npm install
19
- ```
20
-
21
- ### Step 2: Get a Rhombus API Key
7
+ ### Step 1: Get a Rhombus API Key
22
8
 
23
9
  1. Sign up for a [Rhombus Account](https://console.rhombus.com).
24
- 2. Follow the account setup instructions and generate your API key from the developer dashboard.
10
+ 2. Create an API Key at [API Key Settings](https://console.rhombus.com/settings/api-management)
25
11
  3. Set the API key in your environment as `RHOMBUS_API_KEY`.
26
12
 
27
- ### Step 3: Configure Claude Desktop
13
+ ### Step 2: Configure Claude Desktop
28
14
 
29
15
  1. Download Claude desktop [here](https://claude.ai/download).
30
16
 
31
17
  2. Add this to your `claude_desktop_config.json`:
32
18
 
19
+ ### DOCKER
20
+
33
21
  ```json
34
22
  {
35
23
  "mcpServers": {
36
24
  "rhombus": {
37
25
  "command": "docker",
38
- "args": ["run", "-i", "--rm", "-e", "RHOMBUS-API-KEY", "mcp/rhombus"],
26
+ "args": ["run", "-i", "--rm", "-e", "RHOMBUS_API_KEY", "mcp-server-rhombus"],
39
27
  "env": {
40
- "RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
28
+ "RHOMBUS_API_KEY": "YOUR_API_KEY"
41
29
  }
42
30
  }
43
31
  }
@@ -66,17 +54,9 @@ You can access the file using:
66
54
  vim ~/Library/Application\ Support/Claude/claude_desktop_config.json
67
55
  ```
68
56
 
69
- ### Step 4: Build the Docker Image
70
-
71
- Docker build:
72
-
73
- ```bash
74
- docker build -t mcp/rhombus:latest -f Dockerfile .
75
- ```
76
-
77
- ### Step 5: Testing
57
+ ### Step 3: Testing
78
58
 
79
- Let's make sure Claude for Desktop is picking up the tools we've exposed in our `rhombus` server. You can do this by looking for the hammer icon:
59
+ Let's make sure Claude for Desktop is picking up the tools we've exposed in our `rhombus` server. You can do this by looking for the hammer icon.
80
60
 
81
61
  After clicking on the hammer icon, you should see the tools that come with the Filesystem MCP Server:
82
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rhombus-node-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP server for Rhombus API",
5
5
  "keywords": [
6
6
  "ai",
@@ -37,8 +37,8 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.14.0",
40
- "typescript": "^5.8.3",
41
- "prettier": "3.5.3"
40
+ "prettier": "3.5.3",
41
+ "typescript": "^5.8.3"
42
42
  },
43
43
  "engines": {
44
44
  "node": ">=18"