# InterSpace Distribution — Developer Docs > InterSpace Distribution is a music distribution platform for independent artists and labels. This site documents its public API for managing catalogs, tracks, artwork, DSP deliveries, webhooks — and, notably, for AI agents and automation to create and authenticate artist accounts programmatically. ## Agent Signup & Login (start here if you are an AI agent) - [Account Creation](https://docs.interspacemusic.com/#account-creation): How an AI agent or automated integration signs an artist up for a new InterSpace Distribution account with no human filling out a form and no API key. `POST https://cms.interspacemusic.com/api/mobile_auth.php?action=signup` with `first_name`, `email`, `password`, and a required `agent_name` (or `X-Agent-Name` header) identifying your integration — calls without it are rejected. Returns a 90-day bearer token immediately. - Login: `POST https://cms.interspacemusic.com/api/mobile_auth.php?action=login` with `email`, `password` — returns the same bearer-token shape for an existing account. - Current user: `GET https://cms.interspacemusic.com/api/mobile_auth.php?action=me` with `Authorization: Bearer `. Important: this endpoint lives on `cms.interspacemusic.com`, a different host from the `api-v1.interspacemusic.com` base URL used by the rest of this documentation. ## MCP server (for MCP-native agents) - InterSpace Distribution runs a Model Context Protocol server at `https://mcp.interspacemusic.com/mcp` (Streamable HTTP transport, no API key required). Connect directly instead of calling the REST endpoints above if your agent speaks MCP. - Tools: `signup_artist` (agent_name required), `login_artist`, `get_current_user`, `resend_verification`. None can set or change an account's role, account type, or plan. - `GET https://mcp.interspacemusic.com/` for a live human-readable summary, `GET https://mcp.interspacemusic.com/health` for liveness. ## API Reference - [Getting Started](https://docs.interspacemusic.com/#getting-started): Base URLs, authentication headers, implementation models. - [Releases](https://docs.interspacemusic.com/#endpoints): Create and manage releases. - [Tracks](https://docs.interspacemusic.com/#tracks): Track-level metadata and operations. - [Artists](https://docs.interspacemusic.com/#artists): Artist profile management. - [Distribution / Delivery](https://docs.interspacemusic.com/#delivery): Submitting releases to DSPs. - [Asset Uploads](https://docs.interspacemusic.com/#uploads): Cover art and audio upload endpoints. - [Webhooks](https://docs.interspacemusic.com/#webhooks): Delivery status callbacks. ## DDEX Delivery - [DDEX / SFTP Delivery Overview](https://docs.interspacemusic.com/#ddex-overview) - [Connecting via SFTP](https://docs.interspacemusic.com/#ddex-connect) - [DDEX XML Metadata Guide](https://docs.interspacemusic.com/#ddex-xml) ## Optional - [Glossary](https://docs.interspacemusic.com/glossary): Music-distribution terminology.