@aicoin/opendata-mcp 2.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +8 -109
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,135 +6,34 @@ AiCoin OpenData MCP Server — real-time crypto market data & analytics for any
6
6
 
7
7
  > Need exchange trading (place orders, check balances)? Use [@aicoin/aicoin-mcp](https://www.npmjs.com/package/@aicoin/aicoin-mcp) instead — it includes everything here plus 11 CCXT trading tools.
8
8
 
9
- ## Connect
9
+ ## Quick Start
10
10
 
11
- Get your free API key at [aicoin.com/opendata](https://www.aicoin.com/opendata), then add to your MCP client:
11
+ Works out of the box — a free API key is built in (10 req/min, IP rate-limited).
12
12
 
13
13
  ### Claude Code
14
14
 
15
15
  ```bash
16
- claude mcp add aicoin-opendata -- npx -y @aicoin/opendata-mcp \
17
- --env AICOIN_ACCESS_KEY_ID=your-key-id \
18
- --env AICOIN_ACCESS_SECRET=your-secret
16
+ claude mcp add aicoin-opendata -- npx -y @aicoin/opendata-mcp
19
17
  ```
20
18
 
21
- Or add to `.mcp.json` in your project root:
19
+ ### Other Clients
22
20
 
23
- ```json
24
- {
25
- "mcpServers": {
26
- "aicoin-opendata": {
27
- "command": "npx",
28
- "args": ["-y", "@aicoin/opendata-mcp"],
29
- "env": {
30
- "AICOIN_ACCESS_KEY_ID": "your-key-id",
31
- "AICOIN_ACCESS_SECRET": "your-secret"
32
- }
33
- }
34
- }
35
- }
36
- ```
37
-
38
- ### Cursor
39
-
40
- Settings → MCP → Add new MCP server:
21
+ Add to your MCP config (`.mcp.json`, `claude_desktop_config.json`, etc.):
41
22
 
42
23
  ```json
43
24
  {
44
25
  "mcpServers": {
45
26
  "aicoin-opendata": {
46
27
  "command": "npx",
47
- "args": ["-y", "@aicoin/opendata-mcp"],
48
- "env": {
49
- "AICOIN_ACCESS_KEY_ID": "your-key-id",
50
- "AICOIN_ACCESS_SECRET": "your-secret"
51
- }
28
+ "args": ["-y", "@aicoin/opendata-mcp"]
52
29
  }
53
30
  }
54
31
  }
55
32
  ```
56
33
 
57
- ### Windsurf
58
-
59
- Add to `~/.codeium/windsurf/mcp_config.json`:
60
-
61
- ```json
62
- {
63
- "mcpServers": {
64
- "aicoin-opendata": {
65
- "command": "npx",
66
- "args": ["-y", "@aicoin/opendata-mcp"],
67
- "env": {
68
- "AICOIN_ACCESS_KEY_ID": "your-key-id",
69
- "AICOIN_ACCESS_SECRET": "your-secret"
70
- }
71
- }
72
- }
73
- }
74
- ```
75
-
76
- ### VS Code (Copilot)
77
-
78
- Add to `.vscode/mcp.json` in your project:
79
-
80
- ```json
81
- {
82
- "mcp": {
83
- "servers": {
84
- "aicoin-opendata": {
85
- "type": "stdio",
86
- "command": "npx",
87
- "args": ["-y", "@aicoin/opendata-mcp"],
88
- "env": {
89
- "AICOIN_ACCESS_KEY_ID": "your-key-id",
90
- "AICOIN_ACCESS_SECRET": "your-secret"
91
- }
92
- }
93
- }
94
- }
95
- }
96
- ```
97
-
98
- ### Claude Desktop
99
-
100
- Add to `claude_desktop_config.json`:
101
-
102
- ```json
103
- {
104
- "mcpServers": {
105
- "aicoin-opendata": {
106
- "command": "npx",
107
- "args": ["-y", "@aicoin/opendata-mcp"],
108
- "env": {
109
- "AICOIN_ACCESS_KEY_ID": "your-key-id",
110
- "AICOIN_ACCESS_SECRET": "your-secret"
111
- }
112
- }
113
- }
114
- }
115
- ```
116
-
117
- ### OpenCode
118
-
119
- Add to `.opencode/config.toml`:
120
-
121
- ```toml
122
- [mcp_servers.aicoin-opendata]
123
- command = "npx"
124
- args = ["-y", "@aicoin/opendata-mcp"]
125
-
126
- [mcp_servers.aicoin-opendata.env]
127
- AICOIN_ACCESS_KEY_ID = "your-key-id"
128
- AICOIN_ACCESS_SECRET = "your-secret"
129
- ```
130
-
131
- ### Codex
132
-
133
- ```bash
134
- codex --mcp-config mcp.json
135
- ```
34
+ ### Use Your Own API Key (Optional)
136
35
 
137
- Where `mcp.json` contains:
36
+ For higher rate limits, get a key at [aicoin.com/opendata](https://www.aicoin.com/opendata) and add env vars:
138
37
 
139
38
  ```json
140
39
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aicoin/opendata-mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "AiCoin OpenData MCP Server - crypto market data via AiCoin Open API",
5
5
  "main": "build/index.js",
6
6
  "type": "module",