mcp-crypto-price 3.1.0 → 3.2.0
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/http.js
CHANGED
|
@@ -37,6 +37,13 @@ const serverCard = {
|
|
|
37
37
|
},
|
|
38
38
|
required: ['symbol'],
|
|
39
39
|
},
|
|
40
|
+
annotations: {
|
|
41
|
+
title: 'Get Crypto Price',
|
|
42
|
+
readOnlyHint: true,
|
|
43
|
+
destructiveHint: false,
|
|
44
|
+
idempotentHint: true,
|
|
45
|
+
openWorldHint: true,
|
|
46
|
+
},
|
|
40
47
|
},
|
|
41
48
|
{
|
|
42
49
|
name: 'get-market-analysis',
|
|
@@ -48,6 +55,13 @@ const serverCard = {
|
|
|
48
55
|
},
|
|
49
56
|
required: ['symbol'],
|
|
50
57
|
},
|
|
58
|
+
annotations: {
|
|
59
|
+
title: 'Get Market Analysis',
|
|
60
|
+
readOnlyHint: true,
|
|
61
|
+
destructiveHint: false,
|
|
62
|
+
idempotentHint: true,
|
|
63
|
+
openWorldHint: true,
|
|
64
|
+
},
|
|
51
65
|
},
|
|
52
66
|
{
|
|
53
67
|
name: 'get-historical-analysis',
|
|
@@ -56,11 +70,29 @@ const serverCard = {
|
|
|
56
70
|
type: 'object',
|
|
57
71
|
properties: {
|
|
58
72
|
symbol: { type: 'string', description: 'Cryptocurrency symbol or name (e.g. BTC or Bitcoin)' },
|
|
59
|
-
interval: {
|
|
60
|
-
|
|
73
|
+
interval: {
|
|
74
|
+
type: 'string',
|
|
75
|
+
enum: ['m5', 'm15', 'm30', 'h1', 'h2', 'h6', 'h12', 'd1'],
|
|
76
|
+
default: 'h1',
|
|
77
|
+
description: 'Data interval: m1=1min, m5=5min, m15=15min, m30=30min, h1=1hr, h2=2hr, h6=6hr, h12=12hr, d1=daily',
|
|
78
|
+
},
|
|
79
|
+
days: {
|
|
80
|
+
type: 'number',
|
|
81
|
+
minimum: 1,
|
|
82
|
+
maximum: 30,
|
|
83
|
+
default: 7,
|
|
84
|
+
description: 'Number of days of historical data to retrieve (1-30)',
|
|
85
|
+
},
|
|
61
86
|
},
|
|
62
87
|
required: ['symbol'],
|
|
63
88
|
},
|
|
89
|
+
annotations: {
|
|
90
|
+
title: 'Get Historical Analysis',
|
|
91
|
+
readOnlyHint: true,
|
|
92
|
+
destructiveHint: false,
|
|
93
|
+
idempotentHint: true,
|
|
94
|
+
openWorldHint: true,
|
|
95
|
+
},
|
|
64
96
|
},
|
|
65
97
|
{
|
|
66
98
|
name: 'get-top-assets',
|
|
@@ -68,9 +100,22 @@ const serverCard = {
|
|
|
68
100
|
inputSchema: {
|
|
69
101
|
type: 'object',
|
|
70
102
|
properties: {
|
|
71
|
-
limit: {
|
|
103
|
+
limit: {
|
|
104
|
+
type: 'number',
|
|
105
|
+
minimum: 1,
|
|
106
|
+
maximum: 50,
|
|
107
|
+
default: 10,
|
|
108
|
+
description: 'Number of top assets to return, ranked by market cap (1-50)',
|
|
109
|
+
},
|
|
72
110
|
},
|
|
73
111
|
},
|
|
112
|
+
annotations: {
|
|
113
|
+
title: 'Get Top Assets',
|
|
114
|
+
readOnlyHint: true,
|
|
115
|
+
destructiveHint: false,
|
|
116
|
+
idempotentHint: true,
|
|
117
|
+
openWorldHint: true,
|
|
118
|
+
},
|
|
74
119
|
},
|
|
75
120
|
],
|
|
76
121
|
resources: [
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-crypto-price",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server that provides real-time cryptocurrency data and analysis through CoinCap's API. Features include price tracking, market analysis, and historical trends.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
Binary file
|