← customerdashboard.io

INDIVIDUAL MCP TOOL

get_account

Get the signed-in CustomerDashboard account: name, email, workspace, current plan, what the plan allows and how much of it is already used.

customerdashboard.ionone authenticationAvailability not checked

LIVE ENDPOINT

https://app.customerdashboard.io/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_account and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests sending messages.

Parent server

customerdashboard.io

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.customerdashboard]
url = "https://app.customerdashboard.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "customerdashboard": {
      "type": "http",
      "url": "https://app.customerdashboard.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: customerdashboard
Remote MCP URL: https://app.customerdashboard.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "customerdashboard": {
      "url": "https://app.customerdashboard.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "customerdashboard": {
      "type": "http",
      "url": "https://app.customerdashboard.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "customerdashboard",
  "transport": "streamable-http",
  "url": "https://app.customerdashboard.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_platform_overview — Explain what CustomerDashboard.
  • list_supported_data_connectors — List every data source type CustomerDashboard can connect to, the settings each one needs, whether widgets can query it, and whether its schema can be introspected.
  • list_widget_types — List every visualization a widget can use, with the visualizationConfig keys each type requires and accepts.
  • list_plans_and_limits — List CustomerDashboard's subscription plans, their monthly price and the resource limits each one allows.
  • explain_customer_filtering — Explain exactly how to write widget queries so each customer only sees their own rows on a multi-customer dashboard.
  • get_started — Explain how to sign up for the free trial and connect this MCP server to a CustomerDashboard account, plus the order of steps for building a first multi-customer dashboard.
  • list_data_sources — List every data source connected to your workspace.
  • get_data_source — Get one data source by id, including its non-secret connection settings.