rhombus-node-mcp 0.1.10 โ†’ 0.1.12

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
@@ -1,20 +1,40 @@
1
- # Rhombus MCP Server
1
+ # ๐Ÿš€ Rhombus MCP Server - Supercharge Your AI Tools!
2
+ [![smithery badge](https://smithery.ai/badge/@RhombusSystems/rhombus-node-mcp1)](https://smithery.ai/server/@RhombusSystems/rhombus-node-mcp1)
2
3
 
3
- An MCP server implementation that integrates the Rhombus API to provide Chatbot tools.
4
+ Unleash the power of the Rhombus API with this cutting-edge MCP server implementation! Transform your chatbot experience with advanced security and surveillance capabilities at your fingertips.
4
5
 
5
- ## Configuration
6
+ ## ๐Ÿ” About Rhombus
6
7
 
7
- ### Step 1: Get a Rhombus API Key
8
+ Rhombus is the #1 rated commercial security system, built to protect and designed to adapt! We deliver enterprise-grade physical security with a cybersecurity focus, combining:
8
9
 
9
- 1. Sign up for a [Rhombus Account](https://console.rhombus.com).
10
- 2. Create an API Key at [API Key Settings](https://console.rhombus.com/settings/api-management)
11
- 3. Set the API key in your environment as `RHOMBUS_API_KEY`.
10
+ * ๐Ÿ’ก **Smart Cameras** - Innovative dome, fisheye, bullet, and multisensor security cameras
11
+ * ๐Ÿšช **Access Control** - Secure door controllers, readers, and intercoms with mobile, card, and fob access
12
+ * ๐Ÿ“ก **IoT Sensors** - Advanced audio, environmental, motion, entry, and multipurpose panic sensors
13
+ * ๐Ÿ”’ **Alarm Monitoring** - TMA 5-diamond certified live agent verification and dispatch
12
14
 
13
- ### Step 2: Configure Claude Desktop
15
+ Our platform is powered by actionable AI insights that help you respond faster with real-time detections, all while being rooted in strong cybersecurity principles.
14
16
 
15
- 1. Download Claude desktop [here](https://claude.ai/download).
17
+ ## ๐Ÿงช Join Our Beta Test!
16
18
 
17
- 2. Add this to your `claude_desktop_config.json`:
19
+ **We're thrilled to be part of the AI Generation!** Help us shape the future of AI-powered security by testing our MCP server implementation and providing valuable feedback.
20
+
21
+ ๐Ÿ‘‰ **[Fill out our beta test form here](https://rhmbs.link/beta_test)** ๐Ÿ‘ˆ
22
+
23
+ Your insights will directly influence our development roadmap and help us create the most powerful AI security tools on the market!
24
+
25
+ ## ๐Ÿ”ง Quick Setup
26
+
27
+ ### Step 1: Give Your Rhombus Console Superpowers
28
+
29
+ 1. Login to your Rhombus Console - [Login Here](https://console.rhombus.com)! ๐Ÿ”
30
+ 2. Generate your magic key at [API Key Settings](https://console.rhombus.com/settings/api-management) โœจ
31
+ 3. Activate your powers by setting `RHOMBUS_API_KEY` in your environment ๐Ÿ’ช
32
+
33
+ ### Step 2: Supercharge Claude Desktop
34
+
35
+ 1. Grab the incredible Claude desktop [right here](https://claude.ai/download)! ๐Ÿ“ฅ
36
+
37
+ 2. Unleash the magic by adding this to your `claude_desktop_config.json`:
18
38
 
19
39
  ### DOCKER
20
40
 
@@ -29,7 +49,7 @@ An MCP server implementation that integrates the Rhombus API to provide Chatbot
29
49
  "--rm",
30
50
  "-e",
31
51
  "RHOMBUS_API_KEY=YOUR_API_KEY_HERE",
32
- "mcp-server-rhombus"
52
+ "johnrhombusdocker/mcp-server-rhombus"
33
53
  ],
34
54
  "env": {
35
55
  "RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
@@ -61,18 +81,73 @@ You can access the file using:
61
81
  vim ~/Library/Application\ Support/Claude/claude_desktop_config.json
62
82
  ```
63
83
 
64
- ### Step 3: Testing
84
+ ### Step 3: Take It For A Spin! ๐ŸŽก
85
+
86
+ Time to see the magic happen! Let's verify that Claude for Desktop is detecting our awesome `rhombus` server tools:
87
+
88
+ 1. Look for the powerful hammer icon in Claude's interface โš’๏ธ
89
+ 2. Click it to reveal your new arsenal of tools
90
+ 3. Spot the Filesystem MCP Server tools in the list
91
+
92
+ If they're visible, YOU'VE DONE IT! ๐ŸŽ‰ Your integration is live and ready to rock! Claude can now communicate directly with Rhombus systems, giving you the same incredible capabilities as the Rhombus web app, but with the added power of Claude's intelligence!
93
+
94
+ ## ๐Ÿš€ Running Locally: Unleash Your Inner Developer!
95
+
96
+ Want to get hands-on and test out the Rhombus MCP server right on your machine? Follow these steps to build and run a local Docker image, then connect it to your MCP client of choice!
97
+
98
+ ### 1. Build Your Local Docker Image ๐Ÿ› ๏ธ
99
+ First, let's get that Docker image built. This will allow you to run the MCP server in a local environment.
100
+
101
+ ```bash
102
+ npm install
103
+ docker build -t mcp-server-rhombus .
104
+ ```
105
+
106
+ ### 2. Update Your Claude Config for Local Use โšก
107
+ Now, you'll need to adjust your `claude_desktop_config.json` to point to your newly built local Docker image.
108
+
109
+ > ***Note:*** When running locally, the Docker image name changes to `mcp-server-rhombus` from `johnrhombusdocker/mcp-server-rhombus`. Make sure to update this in your configuration!
110
+
111
+ ```json
112
+ {
113
+ "mcpServers": {
114
+ "rhombus": {
115
+ "command": "docker",
116
+ "args": [
117
+ "run",
118
+ "-i",
119
+ "--rm",
120
+ "-e",
121
+ "RHOMBUS_API_KEY=YOUR_API_KEY_HERE",
122
+ "mcp-server-rhombus"
123
+ ],
124
+ "env": {
125
+ "RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
126
+ }
127
+ }
128
+ }
129
+ }
130
+ ```
131
+
132
+ ### Hitting a Snag? We've Got You! ๐Ÿ›Ÿ
133
+
134
+ Check out Claude's fantastic [troubleshooting guide](https://modelcontextprotocol.io/docs/tools/debugging) for quick fixes! Still stuck? Our team of experts is ready to help!
135
+
136
+ * Email us: developer@rhombus.com ๐Ÿ“ง
137
+ * Share your feedback via our [beta test form](https://rhmbs.link/beta_test) ๐ŸŒŸ
65
138
 
66
- 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.
139
+ We're committed to making your experience absolutely seamless and are SUPER excited to hear what amazing applications you're building with our tools!
67
140
 
68
- After clicking on the hammer icon, you should see the tools that come with the Filesystem MCP Server:
141
+ ## ๐Ÿค We Want Your Feedback!
69
142
 
70
- If you see both of these this means that the integration is active. Congratulations! This means Claude can now ask Rhombus questions. You can then simply use it as you would use the Rhombus web app.
143
+ As pioneers in the AI Generation, we're passionate about pushing the boundaries of what's possible when combining advanced physical security with cutting-edge AI tools. Your feedback is invaluable as we continue to innovate and improve.
71
144
 
72
- ### Troubleshooting
145
+ * What features would make your workflow even better?
146
+ * How are you using our MCP server in your projects?
147
+ * What integrations would you like to see next?
73
148
 
74
- The Claude documentation provides an excellent [troubleshooting guide](https://modelcontextprotocol.io/docs/tools/debugging) you can refer to. However, you can still reach out to us at api@rhombus.com for any additional support or [file a bug](https://github.com/ppl-ai/api-discussion/issues).
149
+ Share your thoughts, ideas, and success stories with us! Together, we're creating the future of intelligent security.
75
150
 
76
- ## License
151
+ ## ๐Ÿ“œ License
77
152
 
78
- This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
153
+ This awesome MCP server comes with the freedom of the MIT License! โœ… Use it, โœ… modify it, โœ… share it - the possibilities are endless! Just remember to follow the MIT License terms and conditions. Check out the LICENSE file in our repository for all the details.
@@ -0,0 +1,2 @@
1
+ export const THREE_HOURS_MS = 3 * 60 * 60 * 1000;
2
+ export const FIVE_SECONDS_MS = 5 * 1000;