CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Dynamoi

getdynamoi/mcp
HTTPregistry active
Summary

Connects AI agents to Dynamoi's music promotion platform for Spotify and YouTube campaigns. Exposes tools to create free Smart Links from Spotify URLs, check campaign readiness (billing, platform connections, assets), search artists and analytics, and start OAuth flows for YouTube and Meta ad account connections. Built for artists, managers, and labels who want an agent to handle pre-launch checks and link generation without touching paid campaign deployment directly. Uses remote Streamable HTTP with OAuth scopes, so the agent only gets the access you grant. Includes TypeScript schemas and transport helpers if you're building against the public contract. Keeps Smart Link creation separate from managed ad spend.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Dynamoi MCP 🎧

Let any MCP-capable AI agent help artists and labels get releases ready to promote.

npm version license hosted MCP artists

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 a free Smart Link, pull artist and campaign context, check what is blocking a launch, start YouTube or Meta connection flows, and keep the next promotion step clear.

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.

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.

🎤 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:

QuestionWhat 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.

🧠 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:

{
  "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:

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.

What Ships In This Package

IncludedPurpose
Tool schemasThe public MCP contract exposed by Dynamoi.
Prompts and resourcesGuidance for Dynamoi-specific agent workflows.
Protected-resource metadataOAuth discovery metadata for compatible clients.
HTTP transport helpersStreamable HTTP handling with session binding.
TypeScript typesIntegration-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 layerWhat it protects
🔐 OAuth scopesAgents only get the account access the user grants.
👀 Read-only hintsRead tools are marked as read-only.
✍️ Mutation descriptionsWrite tools describe the external action they may take.
✅ User intent gatesLaunch and campaign-update workflows require clear user intent.
💳 Paid-flow separationDirect paid checkout is not exposed to connected agents.
🔗 Smart Link boundaryFree 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.

🔗 Links

ResourceURL
Websitehttps://dynamoi.com
Hosted MCP endpointhttps://dynamoi.com/mcp
npm packagehttps://www.npmjs.com/package/@dynamoi/mcp
Repositoryhttps://github.com/getDynamoi/mcp
ChangelogCHANGELOG.md
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Media & Entertainment
Registryactive
Package@dynamoi/mcp
TransportHTTP
UpdatedFeb 12, 2026
View on GitHub

Related Media & Entertainment MCP Servers

View all →
Social Media Api

io.github.socialapishub/social-media-api

Unified social media API for AI agents. Access Facebook, Instagram, TikTok, and more.
1
xpay Social Media

io.github.xpaysh/social-media

96 social media scraping tools. Twitter/X, LinkedIn, Instagram, TikTok, Reddit, YouTube.
Youtube Media Mcp Server

com.thenextgennexus/youtube-media-mcp-server

YouTube video search with transcript extraction as first-class output.
Youtube Video Analyzer

io.github.ludmila-omlopes/youtube-video-analyzer

MCP stdio server for analyzing YouTube videos with Google Gemini
2
Social Media Ai Mcp

csoai-org/social-media-ai-mcp

social-media-ai-mcp MCP server by MEOK AI Labs
EzBiz Social Media Analytics

com.ezbizservices/social-media

AI-powered social media intelligence: profile analysis, engagement scoring, and trend detection.