rhombus-node-mcp 0.1.2 → 0.1.4
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 +10 -3
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,9 +23,16 @@ An MCP server implementation that integrates the Rhombus API to provide Chatbot
|
|
|
23
23
|
"mcpServers": {
|
|
24
24
|
"rhombus": {
|
|
25
25
|
"command": "docker",
|
|
26
|
-
"args": [
|
|
26
|
+
"args": [
|
|
27
|
+
"run",
|
|
28
|
+
"-i",
|
|
29
|
+
"--rm",
|
|
30
|
+
"-e",
|
|
31
|
+
"RHOMBUS_API_KEY=YOUR_API_KEY_HERE",
|
|
32
|
+
"mcp-server-rhombus"
|
|
33
|
+
],
|
|
27
34
|
"env": {
|
|
28
|
-
"RHOMBUS_API_KEY": "
|
|
35
|
+
"RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
|
|
29
36
|
}
|
|
30
37
|
}
|
|
31
38
|
}
|
|
@@ -39,7 +46,7 @@ An MCP server implementation that integrates the Rhombus API to provide Chatbot
|
|
|
39
46
|
"mcpServers": {
|
|
40
47
|
"rhombus": {
|
|
41
48
|
"command": "npx",
|
|
42
|
-
"args": ["-
|
|
49
|
+
"args": ["--yes", "--package", "rhombus-node-mcp", "mcp-server-rhombus"],
|
|
43
50
|
"env": {
|
|
44
51
|
"RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
|
|
45
52
|
}
|
package/dist/index.js
CHANGED
|
@@ -185,9 +185,9 @@ server.tool("get-org-information", "Get general information about the organizati
|
|
|
185
185
|
],
|
|
186
186
|
};
|
|
187
187
|
});
|
|
188
|
-
server.tool("get-entity-tool", "get a list of entities like cameras, access controlled doors, sensors,
|
|
188
|
+
server.tool("get-entity-tool", "get a list of entities like cameras, access controlled doors, sensors, etc", {
|
|
189
189
|
entityType: z
|
|
190
|
-
.enum(["camera", "access-controlled-doors"
|
|
190
|
+
.enum(["camera", "access-controlled-doors"])
|
|
191
191
|
.describe("The entity type to retreive. Example: cameras."),
|
|
192
192
|
}, async ({ entityType }) => {
|
|
193
193
|
let ret;
|