@elvatis_com/elvatis-mcp 1.0.2 → 1.0.3

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/README.md +26 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -136,11 +136,12 @@ Claude then executes the plan, calling tools in the right order and running para
136
136
  | `openclaw_logs` | View gateway, agent, or system logs from the OpenClaw server |
137
137
  | `file_transfer` | Upload, download, or list files on the OpenClaw server via SSH |
138
138
 
139
- ### Routing and Orchestration (2 tools)
139
+ ### Routing and Orchestration (3 tools)
140
140
  | Tool | Description |
141
141
  |---|---|
142
142
  | `mcp_help` | Show routing guide. Pass a task to get a specific tool recommendation. |
143
143
  | `prompt_split` | Analyze a complex prompt, split into sub-tasks with agent assignments. |
144
+ | `prompt_split_execute` | Execute a split plan: dispatch subtasks to agents in dependency order with rate limiting. |
144
145
 
145
146
  ### Dashboard
146
147
  | Endpoint | Description |
@@ -500,11 +501,32 @@ On Windows, elvatis-mcp automatically resolves the SSH binary to `C:\Windows\Sys
500
501
 
501
502
  ## `/mcp-help` Slash Command
502
503
 
503
- In Claude Code, the `/project:mcp-help` slash command is available:
504
+ In Claude Code, the `/project:mcp-help` slash command shows the full 34-tool routing guide as formatted output:
504
505
 
505
506
  ```
506
- /project:mcp-help
507
- /project:mcp-help analyze this trading strategy for risk
507
+ /project:mcp-help # full guide
508
+ /project:mcp-help openclaw_status # help for a specific tool
509
+ /project:mcp-help analyze this trading strategy for risk # routing recommendation
510
+ ```
511
+
512
+ ---
513
+
514
+ ## Rate Limiting
515
+
516
+ Cloud sub-agents (`claude_run`, `codex_run`, `gemini_run`) are rate-limited to prevent runaway costs. Default limits:
517
+
518
+ | Agent | /min | /hr | /day | Est. cost/call |
519
+ |-------|------|-----|------|----------------|
520
+ | `claude_run` | 5 | 30 | 200 | $0.03 |
521
+ | `codex_run` | 5 | 30 | 200 | $0.02 |
522
+ | `gemini_run` | 10 | 60 | 500 | $0.01 |
523
+
524
+ Local agents (`local_llm_run`, `home_*`, `openclaw_*`) are unlimited.
525
+
526
+ Usage data persists to `~/.elvatis-mcp/usage.json`. Override limits via the `RATE_LIMITS` env var:
527
+
528
+ ```bash
529
+ RATE_LIMITS='{"claude_run":{"perMinute":3,"perDay":100}}'
508
530
  ```
509
531
 
510
532
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elvatis_com/elvatis-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for OpenClaw — expose smart home, memory, cron, and more to Claude Desktop, Cursor, Windsurf, and any MCP client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",