Promote music on Spotify and grow YouTube channels through AI-powered Meta and Google ad campaigns.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/getDynamoi/mcp{
"mcpServers": {
"mcp": {
"command": "node",
"args": ["/path/to/mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# Dynamoi MCP 🎧
> Let any MCP-capable AI agent run music-promotion workflows for artists and labels.
[](https://www.npmjs.com/package/@dynamoi/mcp)
[](./LICENSE)
[](https://dynamoi.com/mcp)
[](https://dynamoi.com)
Musicians, managers, and labels already have enough to chase down: Spotify
links, artist pages, campaign setup, ad account connections, billing checks,
analytics, and launch notes.
**Dynamoi MCP lets an AI agent help with that work directly.** A connected agent
can create music-promotion campaigns and free Smart Links, pull artist and
campaign context, review analytics, start platform connection flows, and handle
music-distribution applications.
It works with any MCP host that supports remote Streamable HTTP and OAuth:
ChatGPT, Claude, Gemini, local agent runtimes, internal label tools, or custom
automation.
```txt
https://dynamoi.com/mcp
```
## ✨ The Short Version
| When someone asks... | The agent can help with... |
| --- | --- |
| 🎧 "Make a link for this release." | Create a free Smart Link from Spotify and return the public URL. |
| 🚦 "Why is this campaign not ready?" | Check the missing setup: billing, platform connections, countries, assets, and launch state. |
| 📈 "What do we have live right now?" | Search artists, Smart Links, campaigns, analytics, and account status. |
| 📺 "Connect our YouTube channel." | Start the correct connection flow from the conversation. |
| 🚀 "Can we promote this?" | Keep the free-link workflow separate from managed advertising, then point to the next safe step. |
| 💿 "Can we apply for distribution?" | Check the five eligibility requirements and submit a complete application for manual review. |
## 🎤 Who It Is For
**Artists and managers** use Dynamoi MCP to make links, check campaign setup,
and see what needs attention before a release gets promoted.
**Record labels and teams** can wire Dynamoi into internal agent workflows for
campaign checks, artist lookup, reporting, and release operations.
**Developers** can install this package when they need the public MCP contract,
schemas, OAuth metadata, transport helpers, or TypeScript types behind the hosted
Dynamoi server.
## 🔗 Smart Links First
Free Smart Links are the easiest place for an agent to help:
- Turn a Spotify release into a public landing page.
- Import an artist catalog into an artist hub.
- Return the shareable URL immediately.
- Check link status, analytics, theme/settings, and publish state.
- Update or publish a link when the user clearly asks.
That gives artists something useful right away, and it gives promotion teams a
clean next step when the release is ready to push.
## 🚦 Promotion Readiness
Before a campaign can move, a lot of small things have to be true. Dynamoi MCP
helps agents answer the practical questions:
| Question | What Dynamoi can check |
| --- | --- |
| "Is this artist ready?" | Account access, artist records, platform status, and missing setup. |
| "Can this campaign launch?" | Readiness, billing state, supported countries, media assets, and deployment status. |
| "What needs attention?" | Active campaigns, Smart Links, analytics, and next actions. |
| "Are we connected?" | YouTube and Meta connection state, plus connection-start flows where available. |
## 💿 Music Distribution Applications
Dynamoi MCP checks the same five application requirements as the app: Spotify
connected, at least 1,000 Spotify followers, at least 10,000 verified
Soundcharts monthly listeners, connected Facebook Page plus Instagram
professional identity, and connected YouTube identity. Eligible users can
submit an application for manual review from an agent.
Application submission does not approve distribution, accept an agreement,
submit a release, transfer rights, configure splits or tax forms, or deliver
music to stores. Those remain separate customer, legal, provider, and operator
steps.
## 🧠 Built For Any MCP Agent
This is a general MCP server, not a single-chat-product integration. Use the
hosted endpoint from any MCP-capable client that supports remote Streamable HTTP:
```json
{
"mcpServers": {
"dynamoi": {
"url": "https://dynamoi.com/mcp"
}
}
}
```
Authentication runs through Dynamoi OAuth. Users sign in with their Dynamoi
account, and the connected agent receives only the scopes needed for the tools it
calls.
## 🧰 Package Usage
Most artists and labels do **not** need to install anything. They should connect
the hosted MCP server.
Install `@dynamoi/mcp` when you are building against the public Dynamoi MCP
contract:
```bash
npm install @dynamoi/mcp
```
```ts
import {
buildProtectedResourceMetadata,
createDynamoiMcpServer,
handleMcpHttpRequest,
} from "@dynamoi/mcp";
```
The server factory expects an adapter that connects the public MCP contract to
Dynamoi's private application services:
```ts
const server = createDynamoiMcpServer({
adapter,
websiteUrl: "https://dynamoi.com",
});
```
`handleMcpHttpRequest` provides stateless Streamable HTTP request handling for
serverless deployments. Authentication and authorization remain the host
application's responsibility on every request.
### What Ships In This Package
| Included | Purpose |
| --- | --- |
| Tool schemas | The public MCP contract exposed by Dynamoi. |
| Prompts and resources | Guidance for Dynamoi-specific agent workflows. |
| Protected-resource metadata | OAuth discovery metadata for compatible clients. |
| HTTP transport helpers | Stateless Streamable HTTP handling for serverless hosts. |
| TypeScript types | Integration-safe contracts for hosted server code. |
## 🛡️ Safety Model
Dynamoi MCP is built for real artist and label workflows, so the server keeps
clear boundaries around what an agent can do.
| Safety layer | What it protects |
| --- | --- |
| 🔐 OAuth scopes | Agents only get the account access the user grants. |
| 👀 Read-only hints | Read tools are marked as read-only. |
| ✍️ Mutation descriptions | Write tools describe the external action they may take. |
| ✅ User intent gates | Launch and campaign-update workflows require clear user intent. |
| 💳 Paid-flow separation | Direct paid checkout is not exposed to connected agents. |
| 🔗 Smart Link boundary | Free Smart Link creation stays separate from managed advertising launch. |
## 💬 Good First Prompts
Try these from any connected MCP agent:
> 🎧 Create a Smart Link for this Spotify release.
> 🚦 What is blocking this campaign from launching?
> 📈 Show me the active campaigns that need attention.
> 📺 Help me connect my YouTube channel.
> 🚀 Get this release ready to promote.
> 💿 Check whether this artist can apply for music distribution.
## 🔗 Links
| Resource | URL |
| --- | --- |
| Website | <https://dynamoi.com> |
| Hosted MCP endpoint | <https://dynamoi.com/mcp> |
| npm package | <https://www.npmjs.com/package/@dynamoi/mcp> |
| Repository | <https://github.com/getDynamoi/mcp> |
| Changelog | [CHANGELOG.md](./CHANGELOG.md) |
| Capability parity map | [CAPABILITY_PARITY.md](./CAPABILITY_PARITY.md) |
Lo que la gente pregunta sobre mcp
¿Qué es getDynamoi/mcp?
+
getDynamoi/mcp es mcp servers para el ecosistema de Claude AI. Promote music on Spotify and grow YouTube channels through AI-powered Meta and Google ad campaigns. Tiene 3 estrellas en GitHub y su última actualización registrada es del 2026-08-27.
¿Cómo se instala mcp?
+
Puedes instalar mcp clonando el repositorio (https://github.com/getDynamoi/mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar getDynamoi/mcp?
+
Nuestro agente de seguridad ha analizado getDynamoi/mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene getDynamoi/mcp?
+
getDynamoi/mcp es mantenido por getDynamoi. La última actividad registrada en GitHub es del 2026-08-27, con 0 issues abiertos.
¿Hay alternativas a mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/getdynamoi-mcp)<a href="https://claudewave.com/repo/getdynamoi-mcp"><img src="https://claudewave.com/api/badge/getdynamoi-mcp" alt="Featured on ClaudeWave: getDynamoi/mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!