npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

reportdash-datastore-mcp-claude-desktop

v1.0.16

Published

ReportDash DataStore MCP server for Claude Desktop

Readme

ReportDash DataStore MCP for Claude Desktop

Connect your ReportDash DataStore sources to Claude Desktop in 5 minutes.

Prerequisites

Setup (5 minutes)

Step 1: Get Your API Key

  1. Open ReportDash DataStore app (https://datastore.reportdash.com)
  2. Go to DestinationsAPI Access
  3. Click "Generate New Key"
  4. Copy the API key (starts with ds_...)

Step 2: Configure Claude Desktop

On macOS:

# Open the config file
nano ~/Library/Application\ Support/Claude/claude_desktop_config.json

On Windows:

  1. Press Win + R
  2. Type: %APPDATA%\Claude
  3. Open claude_desktop_config.json in Notepad

On Linux:

# Open the config file
nano ~/.config/Claude/claude_desktop_config.json

Step 3: Add Configuration

Paste this into the config file (replace YOUR_API_KEY_HERE with your actual key):

{
  "mcpServers": {
    "reportdash-datastore": {
      "command": "npx",
      "args": ["-y", "reportdash-datastore-mcp-claude-desktop"],
      "env": {
        "REPORTDASH_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

💡 If you already have other MCP servers configured:

{
  "mcpServers": {
    "existing-server": {
      "command": "...",
      "args": ["..."]
    },
    "reportdash-datastore": {
      "command": "npx",
      "args": ["-y", "reportdash-datastore-mcp-claude-desktop"],
      "env": {
        "REPORTDASH_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Step 4: Restart Claude Desktop

Close and reopen Claude Desktop completely.

Step 5: Test It!

Ask Claude:

"List my reportdash datastore sources"

or

"Show me the tables for my Google Ads data in datastore"

🎉 Done! Claude can now access your ReportDash DataStore.


Testing Your Connection

Before configuring Claude Desktop, test your connection:

REPORTDASH_API_KEY=your_key_here npx reportdash-datastore-mcp-claude-desktop --test

You should see:

✅ Connection successful!
✅ API key is valid

🎉 You can now use ReportDash DataStore in Claude Desktop!

Troubleshooting

❌ "command not found: npx"

Solution: Install Node.js from https://nodejs.org/

After installing, verify:

node --version
npx --version

❌ "REPORTDASH_API_KEY environment variable is required"

Solution: Check your claude_desktop_config.json:

  • Make sure REPORTDASH_API_KEY is spelled correctly
  • Make sure your API key is inside quotes
  • Make sure there are no extra spaces

❌ "API key is invalid"

Solution:

  1. Generate a new API key in ReportDash DataStore app
  2. Update your claude_desktop_config.json with the new key
  3. Restart Claude Desktop

❌ Claude says "I don't have access to reportdash datastore"

Solution:

  1. Verify your config file is saved correctly
  2. Make sure you restarted Claude Desktop completely (not just the window)
  3. Check Claude Desktop logs:
    • Mac: ~/Library/Logs/Claude/
    • Windows: %APPDATA%\Claude\logs\

❌ Connection timeout

Solution:

  • Check your internet connection
  • If using a custom API URL, verify it's correct
  • Check if your firewall is blocking Node.js

What You Can Do

Once connected, you can ask Claude to:

  • List sources: "Show me all my connected data sources in datastore"
  • Query data: "Get my Google Ads clicks from datastore for the last 7 days"
  • Analyze trends: "Compare this month's performance to last month using datastore"
  • Create visualizations: "Create a chart of my campaign performance from datastore"
  • Generate reports: "Create a weekly summary of all my marketing channels"

Support

  • 📧 Email: [email protected]
  • 📖 Documentation: https://docs.reportdash.com
  • 💬 App: https://datastore.reportdash.com
  • 🐛 Report Issues: https://github.com/reportdash/datastore-mcp-claude-desktop/issues

Privacy & Security

  • Your API key is stored locally on your computer
  • The MCP server runs locally and only forwards requests to ReportDash DataStore API
  • No data is stored or logged by the MCP server
  • All communication uses HTTPS encryption

Uninstalling

  1. Remove the reportdash-datastore section from claude_desktop_config.json
  2. Restart Claude Desktop
  3. (Optional) Revoke your API key in ReportDash DataStore (https://datastore.reportdash.com) > Destinations > API Access

License

MIT License - see LICENSE file for details