# ReportDash DataStore

The ReportDash Datastore MCP (Model Context Protocol) server provides a standardized interface for AI assistants to query your connected advertising and analytics platforms including Facebook Ads, Go…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add ReportDash/DataStore

# Browse available tools
npx -y @smithery/cli@latest tool list ReportDash/DataStore

# Get full schema for a tool
npx -y @smithery/cli@latest tool get ReportDash/DataStore list_sources

# Call a tool
npx -y @smithery/cli@latest tool call ReportDash/DataStore list_sources '{}'
```

## Direct MCP Connection

Endpoint: `https://datastore--reportdash.run.tools`

## Tools (7)

- `list_sources` — List connected sources for the authenticated user
- `list_tables` — List tables of sources
- `describe_table` — Return schema metadata for a table (columns and its types).
- `query_table` — Run a read-only query against one table using a structured query object. Supports selecting columns, applying filters, …
- `list_views` — List all available Datastore views. Views are curated, unified datasets that combine multiple sources—either across pla…
- `describe_view` — Return schema metadata for a data view (columns and its types).
- `query_view` — Run a read-only query against one view using a structured query object. Supports selecting columns, applying filters, o…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get ReportDash/DataStore <tool-name>
```
