Connect Soundcharts MCP
Add the Soundcharts MCP server to an AI assistant or agent runtime. Most MCP clients only need the server URL
https://mcp.soundcharts.com/mcp
and open a Soundcharts sign-in flow during connection.
Method 1: 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 2: Connect with an access token
- Open MCP credentials in the developer dashboard 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 3: OAuth with client ID and secret
- Open MCP credentials in the developer dashboard 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