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