CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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

Claude Code Marketplaces

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
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

Resemble AI

resemble-ai/resemble-mcp
1HTTP, SSEregistry active
Summary

Connects Claude to Resemble AI's voice synthesis and media intelligence platform. You get 13 topic-based documentation lookups covering voice cloning, text-to-speech, speech-to-speech, and deepfake detection, plus full-text search across their entire MDX doc set. The real value is the OpenAPI schema tools that let you query exact request and response formats for any endpoint, so your assistant can generate correct API calls without guessing. Runs on stdio transport with Python 3.10+. Reach for this when building voice apps and you want Claude to have direct access to Resemble's synthesis APIs, watermarking flows, and detection tooling without constant doc tab switching.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Media & Entertainment
Registryactive
TransportHTTP, SSE
UpdatedJun 9, 2026
View on GitHub

Resemble AI MCP Server

License: MIT Python 3.10+ MCP

Official MCP server exposing Resemble AI documentation as resources and tools. Connect to Cursor, Claude Code, or any MCP-compatible client to enable your coding assistant to access Resemble AI docs during development.

Overview

This is the official Resemble AI MCP server. It implements the Model Context Protocol (stdio transport) to serve documentation from docs/pages/ as queryable resources. The server aggregates docs by topic and provides full-text search across all MDX files.

What it provides:

  • Topic-based documentation aggregation (13 topics: voice-cloning, text-to-speech, agents, etc.)
  • Full-text search across all MDX documentation pages
  • OpenAPI 3.0 spec with exact request/response schemas for code generation
  • Direct page and endpoint access

Once connected, your coding assistant can query Resemble AI documentation programmatically. You can vibe code complete applications—your assistant has instant access to guides, tutorials, and exact API schemas for accurate code generation.

Quick Start

1. Clone & Install

git clone https://github.com/resemble-ai/resemble-mcp.git
cd resemble-mcp

# Create virtual environment
python3 -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

2. Configure MCP Client

Cursor: Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "resemble-ai-docs": {
      "command": "/path/to/resemble-mcp/venv/bin/python",
      "args": ["/path/to/resemble-mcp/server.py"]
    }
  }
}

Claude Code / Claude Desktop: Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or equivalent location for your OS:

{
  "mcpServers": {
    "resemble-ai-docs": {
      "command": "/path/to/resemble-mcp/venv/bin/python",
      "args": ["/path/to/resemble-mcp/server.py"]
    }
  }
}

Note: Use absolute paths. Replace /path/to/resemble-mcp with your actual path.

3. Restart Client

Restart your MCP client to load the server. Tools will be available after restart.

Available Tools

resemble_docs_lookup

Returns aggregated documentation for a topic. Accepts topic ID and returns all related pages concatenated.

Parameters:

  • topic (string, required): One of: voice-cloning, text-to-speech, speech-to-speech, speech-to-text, getting-started, voice-design, streaming, detect, agents, sdks, projects-clips, audio-tools, ssml

Returns: Markdown content with all pages for the topic.

resemble_search

Full-text search across all documentation pages. Returns matching pages with snippets.

Parameters:

  • query (string, required): Search query
  • limit (integer, optional): Max results (default: 5)

Returns: List of matching pages with titles, paths, and content snippets.

resemble_get_page

Retrieves a specific documentation page by path.

Parameters:

  • path (string, required): Page path relative to docs/pages/ (e.g., getting-started/quickstart)

Returns: Full page content in Markdown.

resemble_list_topics

Lists all available topic IDs with descriptions.

Returns: Markdown list of topics.

resemble_api_endpoint

Get detailed OpenAPI specification for a specific API endpoint. Returns exact request/response schemas, parameters, and types.

Parameters:

  • method (string, required): HTTP method (GET, POST, PUT, PATCH, DELETE)
  • path (string, required): API endpoint path (e.g., /synthesize, /voices)

Returns: Endpoint specification with schemas, parameters, and response formats.

resemble_api_search

Search the OpenAPI spec for endpoints matching a query.

Parameters:

  • query (string, required): Search query (e.g., voice, streaming, agent)

Returns: List of matching endpoints with methods, paths, and summaries.

Usage

Once configured, your coding assistant (Cursor, Claude Code, etc.) can call these tools directly. Example use cases:

Building a voice cloning app:

{
  "name": "resemble_docs_lookup",
  "arguments": { "topic": "voice-cloning" }
}

Searching for streaming implementation:

{
  "name": "resemble_search",
  "arguments": { "query": "websocket streaming", "limit": 5 }
}

Getting exact API schema for implementation:

{
  "name": "resemble_api_endpoint",
  "arguments": { "method": "POST", "path": "/synthesize" }
}

Finding all voice-related API endpoints:

{
  "name": "resemble_api_search",
  "arguments": { "query": "voice" }
}

Your assistant uses these tools automatically when you ask it to build features. For example, "build me a TTS streaming service" triggers resemble_docs_lookup for the text-to-speech topic, and may use resemble_api_endpoint to get exact request schemas for accurate implementation.

Project Structure

resemble-mcp/
├── server.py               # MCP server implementation
├── docs/
│   └── pages/              # MDX documentation files
│       ├── getting-started/    # Auth, quickstart, basics
│       ├── voice-generation/   # TTS, STT, S2S
│       ├── voice-creation/     # Voice cloning, recordings
│       ├── agents/             # AI agents
│       ├── detect/             # Deepfake detection
│       └── guides/             # Step-by-step tutorials
└── openapi/
    └── openapi.yml         # OpenAPI 3.0 specification

Supported MCP Clients

Works with any client implementing the Model Context Protocol:

  • Cursor - AI code editor
  • Claude Code - Anthropic's coding agent
  • Claude Desktop - Anthropic's desktop app
  • Any other MCP-compatible client

Development

The server uses stdio transport (reads from stdin, writes to stdout) as per MCP specification.

# Run server directly (for testing/debugging)
python server.py

Architecture:

  • Server implementation: server.py
  • Documentation source: docs/pages/ (MDX files)
  • API specification: openapi/openapi.yml (OpenAPI 3.0)
  • Topic definitions: Hardcoded in TOPICS dict
  • Search: Full-text search with scoring across docs and OpenAPI endpoints

Troubleshooting

Server not loading:

  • Verify absolute paths in MCP config
  • Ensure virtual environment is activated
  • Check mcp package is installed: pip show mcp

Tools not appearing:

  • Restart MCP client
  • Check client logs for initialization errors
  • Verify server starts without errors: python server.py

Search returns no results:

  • Use resemble_docs_lookup with topic ID for guaranteed results
  • Try broader search terms
  • Check topic list: resemble_list_topics

License

MIT License - see LICENSE for details.

Links

  • Resemble AI
  • Resemble AI Documentation
  • MCP Protocol

Related Media & Entertainment MCP Servers

View all →
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.
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.
Video Loom

io.github.wolflangis/video-loom

Turn audio or text into a finished AI music video: narrative, multi-provider clips, final cut.
ElevenLabs

mamertofabian/elevenlabs-mcp-server

MCP server that integrates with ElevenLabs TTS, providing audio generation, multi-voice scripting, and history with a sample web client.
117