Connect Soundcharts MCP
Add the Soundcharts MCP server to an AI assistant or agent runtime. On Claude and ChatGPT, install the
official Soundcharts connector in one click. Other MCP clients only need the server URL
https://mcp.soundcharts.com/mcp
and open a Soundcharts sign-in flow during connection.
Method 1: Official connector and plugin
- Open the official connector in Claude or plugin in ChatGPT.
- Click Connect in Claude or install the plugin in ChatGPT.
- Sign in to Soundcharts and approve access.
Method 2: Add as a custom MCP server (interactive OAuth)
- Open your AI client and go to MCP, connectors, or tools.
- Choose to add a remote or custom MCP server.
- Enter the server URL:
https://mcp.soundcharts.com/mcp - Start the connection.
- Sign in to Soundcharts and approve access.
Works with
Claude Code
claude mcp add --transport http soundcharts https://mcp.soundcharts.com/mcp
claude mcp login soundcharts
Method 3: Connect with an access token
- Open MCP credentials in the developer console or Soundcharts web app.
- Create a new credential.
- Name it, choose
MCPas client type, and click Generate. - Copy the client secret immediately. It is only shown once.
-
Request an access token with your client ID and client secret.
curl -X POST https://account.soundcharts.com/oauth/token \ -u "CLIENT_ID:CLIENT_SECRET" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "grant_type=client_credentials" \ -d "team_id=YOUR_TEAM_NAME_OR_ID" # Add team_id only when your account has several teams and you need to select one. -
Extract
access_tokenfrom the response.{ "access_token": "ACCESS_TOKEN", "token_type": "bearer", "expires_in": 31536000 } # MCP access tokens expire after one year. Generate a new token before then. -
Use the token with MCP.
Pass the value returned in
access_tokenas a bearer token when connecting to the Soundcharts MCP server. Usehttps://mcp.soundcharts.com/mcpas the server URL.Authorization: Bearer ACCESS_TOKEN
Method 4: OAuth with client ID and secret
- Open MCP credentials in the developer console or Soundcharts web app.
- Create a new credential.
- Name it, choose
MCPas client type, and click Generate. - Copy the client secret immediately. It is only shown once.
- Enter the client ID and client secret where your MCP client expects OAuth credentials.
- Enter the server URL:
https://mcp.soundcharts.com/mcp