MCP Directory

How to add Plaid Dashboard MCP (Remote) to Claude Desktop

Plaid's official remote MCP server for integration diagnostics, analytics, and docs via OAuth. Paste the config into ~/Library/Application Support/Claude/claude_desktop_config.json and restart Claude Desktop.

Last updated June 15, 2026 ยท 0โ˜… ยท sse ยท oauth ยท official

Claude Desktop config for Plaid Dashboard MCP (Remote)

Add remote MCP URL https://api.dashboard.plaid.com/mcp/sse (OAuth)
{
  "mcpServers": {
    "plaid-dashboard-mcp-remote": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://api.dashboard.plaid.com/mcp/sse"
      ]
    }
  }
}

Claude Desktop connects to remote servers through the `mcp-remote` proxy (installed on first run via npx). Restart Claude Desktop after saving.

Setup steps

  1. 1Open Claude Desktop โ†’ Settings โ†’ Developer โ†’ Edit Config (this opens ~/Library/Application Support/Claude/claude_desktop_config.json).
  2. 2Paste the Plaid Dashboard MCP (Remote) config below under the top-level "mcpServers" key.
  3. 3Fill in any placeholder secrets (API keys, paths) in the snippet.
  4. 4Save the file, then fully quit and reopen Claude Desktop.
  5. 5Open a chat and confirm Plaid Dashboard MCP (Remote)'s tools appear under the ๐Ÿ”Œ tools menu.

Before you start

  • A Plaid account with Production access approved and at least one active Plaid product
  • Your PLAID_CLIENT_ID and a Production secret
  • An OAuth 2.0 access token minted via the /oauth/token endpoint using the client_credentials grant with the mcp:dashboard scope
  • An MCP client that supports remote servers over Streamable HTTP with bearer-token / OAuth auth

What Plaid Dashboard MCP (Remote) can do in Claude Desktop

plaid_debug_item

Retrieve Item metadata to diagnose why a connection is failing or erroring.

plaid_get_link_analytics

Analyze Link conversion rates, error patterns, and flow/funnel progression.

plaid_get_usages

Track API consumption and per-product usage metrics.

plaid_list_teams

List the teams associated with the OAuth token.

Security

OAuth scopes access to your Plaid dashboard account and integration analytics; review the consent screen before authorizing. It exposes production account/integration diagnostics, so connect only trusted clients.

Plaid Dashboard MCP (Remote) + Claude Desktop FAQ

Where is the Claude Desktop config file?

Claude Desktop reads MCP servers from ~/Library/Application Support/Claude/claude_desktop_config.json. Paste the Plaid Dashboard MCP (Remote) config there under the "mcpServers" key and restart the client.

Is Plaid Dashboard MCP (Remote) safe to use with Claude Desktop?

OAuth scopes access to your Plaid dashboard account and integration analytics; review the consent screen before authorizing. It exposes production account/integration diagnostics, so connect only trusted clients.

Is this server local or remote?

It's a remote, Plaid-hosted server at https://api.dashboard.plaid.com/mcp using the Streamable HTTP transport โ€” there's nothing to install locally.

How does authentication work?

OAuth 2.0 client_credentials grant with the mcp:dashboard scope. You exchange your client_id and production secret for a bearer token at the /oauth/token endpoint and send it as an Authorization: Bearer header.

Why does my token keep expiring?

Access tokens are short-lived (about 15 minutes) by design. Use the accompanying refresh token, or re-run the client_credentials request, to obtain a new one.

View repo Full Plaid Dashboard MCP (Remote) page