SongPilot MCP Server

SongPilot MCP Server

Enables AI assistants like Claude to interact with SongPilot workspace for creating artwork, planning releases, writing bios, and managing music catalog.

Category
Visit Server

README

SongPilot MCP Server

codecov

Model Context Protocol (MCP) server for integrating SongPilot AI agents with Claude Desktop and other MCP clients.

Overview

SongPilot MCP is a client-side package that enables AI assistants like Claude to interact with your SongPilot workspace. It runs locally on your machine and communicates with SongPilot's backend services.

Installation

From PyPI (Recommended)

pip install songpilot-mcp

From Source

git clone https://github.com/songpilotai/songpilot-mcp.git
cd songpilot-mcp
pip install -r requirements.txt
pip install -e .

Configuration

Create a .env file in your working directory:

SONGPILOT_API_KEY=sp_your_api_key_here
SONGPILOT_WORKSPACE_ID=your_workspace_id
SONGPILOT_MCP_BASE_URL=https://mcp.songpilot.ai

Or set environment variables directly:

export SONGPILOT_API_KEY=sp_your_api_key_here
export SONGPILOT_WORKSPACE_ID=your_workspace_id

Getting Your API Key

  1. Log into your SongPilot account
  2. Go to Settings > API Keys
  3. Generate a new key (format: sp_...)
  4. Copy your workspace ID from the URL or settings page

Usage with Claude Desktop

Add to your Claude Desktop configuration (claude_desktop_config.json):

{
  "mcpServers": {
    "songpilot": {
      "command": "songpilot-mcp",
      "env": {
        "SONGPILOT_API_KEY": "sp_your_api_key",
        "SONGPILOT_WORKSPACE_ID": "your_workspace_id"
      }
    }
  }
}

On macOS, the config file is located at: ~/Library/Application Support/Claude/claude_desktop_config.json

On Windows: %APPDATA%\Claude\claude_desktop_config.json

What You Can Do

Once connected, you can ask Claude to:

  • Create artwork for songs and albums
  • Plan release strategies
  • Write artist bios and social media content
  • Analyze your music catalog
  • Get career management advice

Example prompts:

"Create artwork for my song 'Midnight Dreams'"
"Help me plan a release strategy for my new album"
"Write a bio for my artist profile"
"Which of my songs are ready for release?"

Architecture

This is a client-side MCP implementation:

  • Runs on your local machine (not on SongPilot servers)
  • Communicates via stdio with Claude Desktop
  • Makes HTTP API calls to SongPilot services
  • No Docker or Kubernetes required

Development

Setup

make venv          # Create virtual environment
make install-dev   # Install dependencies

Commands

make format        # Format code with black and isort
make lint          # Run ruff linter and format checks
make test          # Run pytest with coverage
make build         # Build package for distribution
make publish       # Publish to PyPI (requires token)

Testing

# Run all tests
pytest

# With coverage
pytest --cov=songpilot_mcp --cov-report=html

# Specific test file
pytest tests/unit/test_client.py -v

Environment Variables

Variable Required Default Description
SONGPILOT_API_KEY Yes - Your SongPilot API key (sp_...)
SONGPILOT_WORKSPACE_ID Yes - Your workspace ID
SONGPILOT_MCP_BASE_URL No https://mcp.songpilot.ai API base URL
LOG_LEVEL No INFO Logging level (DEBUG, INFO, WARNING, ERROR)

Troubleshooting

"Authentication failed"

  • Verify your API key starts with sp_
  • Check that the key is active in your SongPilot settings
  • Ensure the workspace ID is correct

"Workspace not found"

  • Confirm you're using the correct workspace ID
  • Verify you have access to the workspace

Connection issues

  • Check your internet connection
  • Verify SONGPILOT_MCP_BASE_URL is correct (default: https://mcp.songpilot.ai)
  • Check SongPilot status page for service outages

License

MIT License - see LICENSE file for details.

Support

  • Documentation: https://docs.songpilot.ai
  • Issues: https://github.com/songpilotai/songpilot-mcp/issues
  • Email: support@songpilot.ai

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured