Promote music on Spotify and grow YouTube channels through AI-powered Meta and Google ad campaigns.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dynamoi": {
"url": "https://dynamoi.com/mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Manage your music promotion and YouTube growth campaigns through ChatGPT, Claude, Gemini, and other AI assistants. Automated Meta and Google ad campaigns — no agency fees, no contracts.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@dynamoi/mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @dynamoi/mcp against OSV.dev.
Click any tool to inspect its schema.
dynamoi_platform_pricingTiers and activation information for Dynamoi pricing
dynamoi://platform/pricing
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP server for the PostFast API — schedule and manage social media posts via AI tools
Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.getDynamoi/dynamoi and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Music promotion tools for AI assistants.
Dynamoi lets ChatGPT, Claude, Gemini, and other MCP clients work with an artist's real promotion workspace: Smart Links, artist hubs, campaign readiness, platform connections, YouTube growth, Meta campaigns, billing status, and launch workflows.
The normal way to use it is the hosted remote MCP server:
https://dynamoi.com/mcp
This npm package is the public contract behind that server: tool schemas, resource metadata, transport helpers, and TypeScript types for the hosted implementation.
| Area | Assistant can help with |
|---|---|
| Free Smart Links | Create Spotify release links, import artist catalogs, return public URLs, inspect analytics, update themes, and publish or unpublish links. |
| Artist workspace | List artists, search records, summarize account state, and explain the best next action for a brand-new or returning user. |
| Campaign planning | Check launch readiness, country availability, billing state, platform connections, and media assets before anything is created. |
| Managed campaigns | Launch, pause, resume, and update Dynamoi campaign workflows after clear user confirmation. |
| YouTube growth | Start YouTube channel linking and inspect campaign/account readiness for creator growth workflows. |
| OpenAI connectors | Expose search and fetch for ChatGPT Deep Research style retrieval. |
Use Dynamoi from the ChatGPT app directory, or add the remote server URL to any MCP client that supports Streamable HTTP remote servers.
{
"mcpServers": {
"dynamoi": {
"url": "https://dynamoi.com/mcp"
}
}
}
Authentication is handled through Dynamoi OAuth. Users sign in with their Dynamoi account, and the assistant only receives the scopes needed for the tools it calls.
Most music tools stop at a dashboard. Dynamoi is built for the moment after the dashboard exists, when an artist asks:
The assistant can move through those steps with the user instead of sending them back and forth between tabs.
The public server includes tools for:
search and fetchThe server also publishes prompts and resources that teach assistants how to answer Dynamoi-specific questions without over-calling tools or creating paid workflows when the user only asked for a free Smart Link.
Most users do not need to install this package. Install it when you are working on the Dynamoi MCP server implementation, testing the public contract, or consuming the exported schemas and types.
npm install @dynamoi/mcp
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:
const server = createDynamoiMcpServer({
adapter,
websiteUrl: "https://dynamoi.com",
});
handleMcpHttpRequest provides Streamable HTTP request handling with session
binding so an MCP session cannot drift across authenticated users.