reportdash-datastore-mcp-claude-desktop 1.0.11 → 1.0.13
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 +1 -1
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Connect your ReportDash DataStore sources to Claude Desktop in 5 minutes.
|
|
|
13
13
|
### Step 1: Get Your API Key
|
|
14
14
|
|
|
15
15
|
1. Open ReportDash DataStore app
|
|
16
|
-
2. Go to **
|
|
16
|
+
2. Go to **Destinations** → **API Access**
|
|
17
17
|
3. Click **"Generate New Key"**
|
|
18
18
|
4. Copy the API key (starts with `rd_...`)
|
|
19
19
|
|
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
|
|
22
|
+
'REPORTDASH_API_KEY environment variable is required. Get your API key from ReportDash DataStore > 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
|
|
293
|
+
console.log('\n💡 Check your API key in ReportDash DataStore > Destinations > API Access');
|
|
294
294
|
}
|
|
295
295
|
});
|
|
296
296
|
});
|