roboraw-mcp 1.1.0 → 1.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/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -80,7 +80,8 @@ async function onboard() {
|
|
|
80
80
|
const config = {
|
|
81
81
|
mcpServers: {
|
|
82
82
|
roboraw: {
|
|
83
|
-
command: "
|
|
83
|
+
command: "npx",
|
|
84
|
+
args: ["-y", "roboraw-mcp@latest"],
|
|
84
85
|
env: {
|
|
85
86
|
ROBORAW_API_URL: apiUrl,
|
|
86
87
|
ROBORAW_AGENT_TOKEN: token,
|
|
@@ -129,7 +130,7 @@ function main() {
|
|
|
129
130
|
const client = new RoboRawClient(apiUrl, agentToken);
|
|
130
131
|
const server = new McpServer({
|
|
131
132
|
name: "roboraw",
|
|
132
|
-
version: "1.0
|
|
133
|
+
version: "1.1.0",
|
|
133
134
|
});
|
|
134
135
|
// Register all tools
|
|
135
136
|
registerHeartbeat(server, client);
|
package/package.json
CHANGED