reportdash-datastore-mcp-claude-desktop 1.0.13 ā 1.0.14
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/README.md +4 -4
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Connect your ReportDash DataStore sources to Claude Desktop in 5 minutes.
|
|
|
12
12
|
|
|
13
13
|
### Step 1: Get Your API Key
|
|
14
14
|
|
|
15
|
-
1. Open ReportDash DataStore app
|
|
15
|
+
1. Open ReportDash DataStore app (https://datastore.reportdash.com)
|
|
16
16
|
2. Go to **Destinations** ā **API Access**
|
|
17
17
|
3. Click **"Generate New Key"**
|
|
18
18
|
4. Copy the API key (starts with `rd_...`)
|
|
@@ -170,8 +170,8 @@ Once connected, you can ask Claude to:
|
|
|
170
170
|
|
|
171
171
|
- š§ **Email:** support@reportdash.com
|
|
172
172
|
- š **Documentation:** https://docs.reportdash.com
|
|
173
|
-
- š¬ **
|
|
174
|
-
- š **Report Issues:** https://github.com/reportdash/datastore-mcp/issues
|
|
173
|
+
- š¬ **App:** https://datastore.reportdash.com
|
|
174
|
+
- š **Report Issues:** https://github.com/reportdash/datastore-mcp-claude-desktop/issues
|
|
175
175
|
|
|
176
176
|
---
|
|
177
177
|
|
|
@@ -188,7 +188,7 @@ Once connected, you can ask Claude to:
|
|
|
188
188
|
|
|
189
189
|
1. Remove the `reportdash-datastore` section from `claude_desktop_config.json`
|
|
190
190
|
2. Restart Claude Desktop
|
|
191
|
-
3. (Optional) Revoke your API key in ReportDash DataStore
|
|
191
|
+
3. (Optional) Revoke your API key in ReportDash DataStore (https://datastore.reportdash.com) > Destinations > API Access
|
|
192
192
|
|
|
193
193
|
---
|
|
194
194
|
|
package/index.js
CHANGED
|
@@ -19,7 +19,7 @@ if (!API_KEY) {
|
|
|
19
19
|
error: {
|
|
20
20
|
code: -32600,
|
|
21
21
|
message:
|
|
22
|
-
'REPORTDASH_API_KEY environment variable is required. Get your API key from ReportDash DataStore > Destinations > API Access.',
|
|
22
|
+
'REPORTDASH_API_KEY environment variable is required. Get your API key from ReportDash DataStore (https://datastore.reportdash.com)> Destinations > API Access.',
|
|
23
23
|
},
|
|
24
24
|
id: null,
|
|
25
25
|
}) + '\n'
|
|
@@ -290,7 +290,7 @@ function testConnection() {
|
|
|
290
290
|
console.log('ā Connection failed');
|
|
291
291
|
console.log(`Status: ${res.statusCode}`);
|
|
292
292
|
console.log(`Response: ${data}`);
|
|
293
|
-
console.log('\nš” Check your API key in ReportDash DataStore > Destinations > API Access');
|
|
293
|
+
console.log('\nš” Check your API key in ReportDash DataStore (https://datastore.reportdash.com)> Destinations > API Access');
|
|
294
294
|
}
|
|
295
295
|
});
|
|
296
296
|
});
|