@battlegrid/mcp-server 31.2.22 → 31.2.24
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.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ import { type Implementation, type Prompt, type Resource } from '@modelcontextpr
|
|
|
49
49
|
* being asked. Move it for a change to THIS package — a proxy fix, a dependency bump, a docs
|
|
50
50
|
* correction. Never move it to track the server.
|
|
51
51
|
*/
|
|
52
|
-
export declare const PACKAGE_VERSION = "31.2.
|
|
52
|
+
export declare const PACKAGE_VERSION = "31.2.24";
|
|
53
53
|
export declare const DEFAULT_URL = "https://mcp.battlegrid.trade/mcp";
|
|
54
54
|
export interface EnvConfig {
|
|
55
55
|
apiKeys: string[];
|
package/dist/index.js
CHANGED
|
@@ -52,7 +52,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema, ListPromptsRequestSchema
|
|
|
52
52
|
* being asked. Move it for a change to THIS package — a proxy fix, a dependency bump, a docs
|
|
53
53
|
* correction. Never move it to track the server.
|
|
54
54
|
*/
|
|
55
|
-
export const PACKAGE_VERSION = '31.2.
|
|
55
|
+
export const PACKAGE_VERSION = '31.2.24';
|
|
56
56
|
export const DEFAULT_URL = 'https://mcp.battlegrid.trade/mcp';
|
|
57
57
|
const MAX_RETRIES = 3;
|
|
58
58
|
const RETRY_DELAYS_MS = [2000, 4000, 8000];
|
package/package.json
CHANGED
package/skills/EXPORT.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"generator": "battlegrid-app/server/scripts/export-mcp-skills.mjs",
|
|
3
|
-
"contractVersion": "
|
|
3
|
+
"contractVersion": "59.0.0",
|
|
4
4
|
"files": {
|
|
5
5
|
"battlegrid-agent-management/SKILL.md": "b6ea75b3d838c1dbaaf3984d7e99a11c81686de2c1a1910c35699ee7e70dafa5",
|
|
6
6
|
"battlegrid-arena-play/SKILL.md": "03fa153bf82be18bf5ed01e3ba12e2cd9f99a81b08d903a77b52169e7519a182",
|
|
7
7
|
"battlegrid-market-analysis/SKILL.md": "22fde9c4eac0261c89a8056ab8b20b66fcbe1fd58447fa0ac84fd410b4d134d7",
|
|
8
8
|
"battlegrid-radar-deployment/SKILL.md": "d2a012b154e1e529db19529bd7c3d75d069f4e410d5804add51165f0f0902b2e",
|
|
9
|
-
"battlegrid-strategy-authoring/SKILL.md": "
|
|
9
|
+
"battlegrid-strategy-authoring/SKILL.md": "1f1bf1ecfbf1a20d585a53e8f1ba8e9fbdeaa329cad9ebdc16ce6cac2b213358",
|
|
10
10
|
"battlegrid-strategy-doctor/SKILL.md": "9ab3f79128ec81d3e90167c3f1ea4bd6f6b570290e5ebe2bf855195263c58239",
|
|
11
11
|
"battlegrid-strategy-examples/SKILL.md": "6f15da8b29a8aff15f6829d7ae87cbe74904bfe5372e37fe17d578cc0c289577",
|
|
12
12
|
"battlegrid-strategy-examples/references/playbooks.md": "35c543c090d00ba19e4bcf0a80502afac7a4954643fc535de0b24381c91ecbf4",
|
|
@@ -187,6 +187,12 @@ point-in-time reading, and you say so.
|
|
|
187
187
|
|
|
188
188
|
### 6. Confirm, then apply
|
|
189
189
|
|
|
190
|
+
**In a conversation the Strategy Builder hosts, this section does not apply: compile and stop.**
|
|
191
|
+
The compiled plan lands on the player's rail as unsaved changes and their Review & save is the one
|
|
192
|
+
consent. Report that it is staged, name the axes, and present no apply confirmation — the server
|
|
193
|
+
refuses `apply_strategy_plan` from such a conversation as a tool error, so calling it spends an op
|
|
194
|
+
of your budget and commits nothing.
|
|
195
|
+
|
|
190
196
|
One confirmation carrying the plan's own `confirmationSummary`, offering Apply / Revise / Cancel.
|
|
191
197
|
|
|
192
198
|
On **Apply**, call `apply_strategy_plan` with two values and nothing else:
|
|
@@ -215,6 +221,12 @@ only authority on all of them; your job is to react to what it returns.
|
|
|
215
221
|
`fork_strategy`, `update_strategy_signal_rule`, `restore_strategy`, `archive_strategy` and
|
|
216
222
|
`preview_strategy_report` are part of this flow.
|
|
217
223
|
|
|
224
|
+
**In a builder-hosted conversation, three of those are refused at execution** —
|
|
225
|
+
`update_strategy_signal_rule`, `restore_strategy` and `archive_strategy`, alongside
|
|
226
|
+
`apply_strategy_plan` — because each commits a revision of the open strategy around the player's
|
|
227
|
+
save. `fork_strategy` stays available: it writes a DIFFERENT strategy, which is not the one the
|
|
228
|
+
builder owns. `preview_strategy_report` and every read stay available.
|
|
229
|
+
|
|
218
230
|
Before any destructive one, state the blast radius from the server's own fields and confirm it
|
|
219
231
|
with the player:
|
|
220
232
|
|