@pmxt/mcp 2.41.0 → 2.41.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.
- package/dist/generated/tools.js +2 -2
- package/package.json +1 -1
package/dist/generated/tools.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// AUTO-GENERATED by mcp/scripts/generate-tools.js -- DO NOT EDIT
|
|
2
|
-
// Generated from core/src/server/openapi.yaml (2026-05-
|
|
2
|
+
// Generated from core/src/server/openapi.yaml (2026-05-15)
|
|
3
3
|
export const TOOLS = [
|
|
4
4
|
{
|
|
5
5
|
"name": "buildOrder",
|
|
@@ -2761,7 +2761,7 @@ export const TOOLS = [
|
|
|
2761
2761
|
},
|
|
2762
2762
|
{
|
|
2763
2763
|
"name": "watchOrderBooks",
|
|
2764
|
-
"description": "Watch multiple order books simultaneously via WebSocket. Returns a promise that resolves with a record of order book snapshots keyed by ID. Exchanges with native batch support (e.g. Kalshi) send a single subscribe message for all tickers; others fall back to individual watchOrderBook calls.",
|
|
2764
|
+
"description": "Watch multiple order books simultaneously via WebSocket. Returns a promise that resolves with a record of order book snapshots keyed by ID. Exchanges with native batch support (e.g. Kalshi) send a single subscribe message for all tickers; others fall back to individual watchOrderBook calls.\n\n**Transport:** WebSocket\n\n| Environment | URL |\n|---|---|\n| Local sidecar | `ws://localhost:3847/ws` |\n| Hosted API | `wss://api.pmxt.dev/ws?apiKey=YOUR_KEY` |\n\n**Subscribe:**\n```json\n{ \"id\": \"req-1\", \"action\": \"subscribe\", \"method\": \"watchOrderBooks\", \"args\": [...] }\n```\n\n**Server response:**\n```json\n{ \"event\": \"data\", \"id\": \"req-1\", \"method\": \"watchOrderBooks\", \"symbol\": \"...\", \"data\": { ... } }\n```\n\n**Unsubscribe:**\n```json\n{ \"id\": \"req-1\", \"action\": \"unsubscribe\" }\n```",
|
|
2765
2765
|
"inputSchema": {
|
|
2766
2766
|
"type": "object",
|
|
2767
2767
|
"properties": {
|