# Master Metrics

Master Metrics MCP v1.0.0

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list master-metrics/master_metrics

# Get full schema for a tool
npx -y @smithery/cli@latest tool get master-metrics/master_metrics health_check

# Call a tool
npx -y @smithery/cli@latest tool call master-metrics/master_metrics health_check '{}'
```

## Direct MCP Connection

Endpoint: `https://master-metrics.run.tools`

**Required config:**
- `mm-authorization` (header) — Master Metrics Api Key: Bearer ...

## Tools (10)

- `health_check` — Check if the MCP server and API are operational. Returns status ok when healthy.
- `get_available_sources` — Returns the list of data sources connected to the organization (e.g. meta, google, tiktok). Organization is derived fro…
- `get_accounts` — Returns the list of connected accounts for a given data source. Use get_available_sources first to obtain valid source …
- `get_metrics` — Returns the list of available metrics for a given data source. Use get_available_sources first to obtain valid source n…
- `get_dimensions` — Returns the list of available dimensions (breakdowns) for a given data source.
- `get_data` — Execute a data search query against a source. Returns tabular data with metrics and breakdowns.
- `get_dashboards` — Get all the dashboards in the organization, including their sections. Returns an array of dashboards with their sections
- `get_dashboard_public_links` — Get public links for a dashboard group, including the sections in the group. This is used to share a dashboard with som…
- `create_dashboard_public_link` — Create a public link for a dashboard group, including the sections in the group. This is used to share a dashboard with…
- `get_dates` — Returns the available date fields for sources that require date fields on get_data requests. For example, Kommo, GoHigh…

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