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

Captapi

cdcstream/captapi
authSTDIO, HTTPregistry active
Summary

Connects Claude to Captapi's social media data extraction service across YouTube, TikTok, Instagram, and Facebook. You get 62 tools covering transcripts, AI summaries, comments, engagement metrics, channel analytics, video downloads, and search. The backend runs Apify scrapers with OpenAI summarization, so you can pull video metadata, batch fetch comments with pagination, grab channel stats, or upload video files for Whisper transcription. Requires a Captapi API key and charges credits per request based on your subscription tier. Useful when you're building content analysis workflows, monitoring social campaigns, or need structured data from social platforms without writing scrapers yourself.

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 →

Configuration

CAPTAPI_API_KEY*secret

Your capt_live_... API key. Create one at https://captapi.com/dashboard/api-keys (100 free credits).

CAPTAPI_BASE_URL

Override the Captapi API base URL (default https://api.captapi.com).

Categories
Data & AnalyticsMedia & Entertainment
Registryactive
Package@captapi/mcp
TransportSTDIO, HTTP
AuthRequired
UpdatedJun 4, 2026
View on GitHub

Captapi

API-as-a-Service that extracts transcripts, AI summaries, comments, engagement metrics, and channel analytics from YouTube, TikTok, Instagram, and Facebook videos.

Architecture

  • Backend: FastAPI (Python 3.12) — Apify scraping + OpenAI summarization
  • Frontend: Next.js 15 + Tailwind + shadcn/ui — landing, dashboard, billing
  • DB / Auth: Supabase (Postgres + Auth + Storage)
  • Cache / Rate limit: Upstash Redis
  • Scraping: Apify Actors
  • AI: OpenAI (gpt-4o-mini + Whisper)
  • Billing: Stripe (subscriptions + top-up credits)

Quick Start

Prerequisites

  • Python 3.12+
  • Node.js 20+
  • Supabase project (free tier)
  • Apify account + API token
  • OpenAI API key
  • Stripe account (test mode)
  • Upstash Redis (free tier)

1. Supabase Setup

# Install Supabase CLI
npm i -g supabase

# Login and link your project
supabase login
supabase link --project-ref YOUR_PROJECT_REF

# Push schema
supabase db push

2. Backend Setup

cd backend
cp .env.example .env
# Fill in env vars

# Install dependencies (using uv)
pip install uv
uv pip install -e .

# Run dev server
uvicorn app.main:app --reload --port 8000

3. Frontend Setup

cd frontend
cp .env.example .env.local
# Fill in env vars

npm install
npm run dev

Open http://localhost:3000.

Project Structure

socialkit-clone/
├── backend/                FastAPI service
│   ├── app/
│   │   ├── main.py         App entry
│   │   ├── core/           Config, auth, credits, security
│   │   ├── routers/        Endpoint handlers per platform
│   │   ├── services/       Apify, OpenAI, Supabase, Cache, Stripe
│   │   ├── schemas/        Pydantic models
│   │   └── utils/          Helpers
│   ├── pyproject.toml
│   └── Dockerfile
├── frontend/               Next.js 15 app
│   ├── app/                App Router
│   ├── components/         UI components
│   └── lib/                Supabase + API client
└── supabase/
    └── migrations/         SQL schema

API Endpoints

All endpoints require Authorization: Bearer capt_live_... header.

YouTube

  • GET /v1/youtube/transcript?url=...
  • GET /v1/youtube/summarize?url=...
  • GET /v1/youtube/video-details?url=...
  • GET /v1/youtube/comments?url=...&limit=...
  • GET /v1/youtube/channel-details?url=...
  • GET /v1/youtube/channel-videos?url=...&limit=...
  • GET /v1/youtube/playlist-videos?url=...&limit=...
  • GET /v1/youtube/search?q=...&limit=...
  • GET /v1/youtube/video-download?url=...

TikTok

  • GET /v1/tiktok/transcript|summarize|video-details|comments|channel-details|search|video-download

Instagram

  • GET /v1/instagram/transcript|summarize|details|comments|channel-details|channel-posts|channel-reels|reels-search|video-download

Facebook

  • GET /v1/facebook/transcript|summarize|details|comments|page-details

Video Files

  • POST /v1/video/transcript — multipart upload, Whisper transcription
  • POST /v1/video/summarize — transcription + AI summary

Account

  • GET /v1/account/usage — credit balance + recent requests
  • GET /v1/account/limits — plan + remaining quota

Pricing

PlanPrice/moCredits/mo$/Credit
Free$0100 lifetime—
Starter$91,500$0.006
Pro$296,000$0.0048
Business$9925,000$0.0039
Top-up$5500$0.01

License

MIT

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.