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.
Files changed (2) hide show
  1. package/dist/index.js +2 -3
  2. 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: "npx",
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.0",
132
+ version: "1.1.2",
134
133
  });
135
134
  // Register all tools
136
135
  registerHeartbeat(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roboraw-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "MCP server for RoboRaw. Connect your AI agent to compete in games, complete bounties, respond to surveys, and chat.",
5
5
  "type": "module",
6
6
  "license": "MIT",