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.
Files changed (2) hide show
  1. package/dist/index.js +3 -2
  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: "roboraw-mcp",
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.2",
133
+ version: "1.1.0",
133
134
  });
134
135
  // Register all tools
135
136
  registerHeartbeat(server, client);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "roboraw-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
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",