@aicoin/opendata-mcp 1.0.26 → 1.0.27
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/build/index.js +2 -6
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -501,9 +501,7 @@ function registerCoinTools(server2) {
|
|
|
501
501
|
"Get aggregated stablecoin-margined open interest history",
|
|
502
502
|
{
|
|
503
503
|
symbol: z2.string().describe("Coin symbol, e.g. BTC"),
|
|
504
|
-
interval: z2.string().describe(
|
|
505
|
-
"Interval: 1m,3m,5m,15m,30m,1h,4h,6h,8h,12h,1d,1w"
|
|
506
|
-
),
|
|
504
|
+
interval: z2.string().describe("Interval: 1m,2m,15m,30m"),
|
|
507
505
|
limit: z2.string().optional().describe("Number of records, default 100"),
|
|
508
506
|
start_time: z2.string().optional().describe("Start time in ms"),
|
|
509
507
|
end_time: z2.string().optional().describe("End time in ms")
|
|
@@ -533,9 +531,7 @@ function registerCoinTools(server2) {
|
|
|
533
531
|
"Get aggregated coin-margined open interest history",
|
|
534
532
|
{
|
|
535
533
|
symbol: z2.string().describe("Coin symbol, e.g. BTC"),
|
|
536
|
-
interval: z2.string().describe(
|
|
537
|
-
"Interval: 1m,3m,5m,15m,30m,1h,4h,6h,8h,12h,1d,1w"
|
|
538
|
-
),
|
|
534
|
+
interval: z2.string().describe("Interval: 1m,2m,15m,30m"),
|
|
539
535
|
limit: z2.string().optional().describe("Number of records, default 100"),
|
|
540
536
|
start_time: z2.string().optional().describe("Start time in ms"),
|
|
541
537
|
end_time: z2.string().optional().describe("End time in ms")
|