rankfabrik-mcp
Provides tools for YouTube video transcription, including metadata inspection, full transcription with segments and chapters, searching for videos, harvesting transcriptions for a topic, and batch transcription of up to 50 videos.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@rankfabrik-mcptranscribe the YouTube video dQw4w9WgXcQ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RankFabrik — canal MCP
Les 4 APIs de données publiques de RankFabrik, exposées comme outils MCP pour les agents (Claude, ChatGPT, Cursor…). Serveur mince : il ne collecte rien lui-même, il appelle les façades REST déjà en production et rend la réponse telle quelle — clés, quotas, comptage et facturation restent ceux de l'API existante.
Une clé, quatre produits. Prenez une clé d'essai gratuite (500 unités/mois, sans carte bancaire) sur rankfabrik.com/tarifs, puis renseignez-la dans
RANKFABRIK_API_KEY. Si votre clé ne couvre pas encore un produit, l'outil concerné vous rend un message d'activation — jamais une erreur brute.
Installer en un clic

Via Smithery (installe et configure le serveur dans le client de votre choix) :
npx -y @smithery/cli install rankfabrik-mcp --client claude--client accepte aussi cursor, cline, windsurf… Réglage manuel par client
plus bas dans Installer dans un client.
Related MCP server: ReefAPI MCP
Outils
Captions — transcription YouTube
Outil | Ce qu'il rend | Facturation |
| Métadonnées + pistes de sous-titres disponibles, sans télécharger le texte | gratuit |
| Transcription complète : texte, segments minutés, chapitres, SRT/VTT, verbatims | 1 unité |
| Identifiants de vidéos pour un terme | par identifiant |
| Cherche et transcrit un thème en un appel (≤ 30 vidéos) | par vidéo transcrite |
| Transcrit une liste d'identifiants/URL (≤ 50) en parallèle | par vidéo transcrite |
video accepte une URL YouTube sous ses quatre écritures (watch, youtu.be,
embed/shorts/live) ou un identifiant brut à onze caractères.
Places — établissements
Outil | Ce qu'il rend | Facturation |
| Établissements pour un terme autour d'un lieu (ville ou lat+lon), enrichissables (e-mails, horaires, photos) — ≤ 20 | par établissement |
| Balayage plus large d'une zone (grille de points) | par établissement |
| Liste des villes reconnues pour le paramètre | gratuit |
Localisation : soit ville (nom de ville connue, voir places_cities), soit
latitude + longitude pour n'importe où ailleurs.
Jobs — emplois
Outil | Ce qu'il rend | Facturation |
| Offres d'emploi pour un métier, éventuellement filtrées par lieu | par offre |
| Idem avec le détail complet de chaque offre (+ profil société optionnel) | par offre |
| Profil public de recrutement d'une société (nom ou slug) | par société |
Verify — vérification d'e-mails
Outil | Ce qu'il rend | Facturation |
| Vérdict de délivrabilité d'une adresse (syntaxe, domaine, MX, sondage SMTP) | 1 unité |
| Idem pour une liste d'adresses | par adresse vérifiée |
Configuration
Une seule variable est obligatoire : la clé fédérée.
Variable | Rôle | Défaut |
| Clé | — (obligatoire) |
| En-tête portant la clé |
|
| URL affichée pour obtenir/activer une clé |
|
|
|
|
| Port en transport |
|
Surcharges avancées (optionnelles). Chaque produit vise son sous-domaine par
défaut — captions / places / jobs / verify.rankfabrik.com. On peut
surcharger cible et clé produit par produit : RANKFABRIK_<PRODUIT>_URL et
RANKFABRIK_<PRODUIT>_KEY (ex. RANKFABRIK_PLACES_KEY). RANKFABRIK_BASE_URL
reste accepté comme alias historique de la cible Captions.
Installer dans un client
Tous les clients de bureau lancent le serveur en stdio via npx — aucun clone
nécessaire. Remplacez rf_xxx par votre clé.
Claude Desktop
Fichier claude_desktop_config.json (menu Réglages → Développeur → Éditer la
configuration) :
{
"mcpServers": {
"rankfabrik": {
"command": "npx",
"args": ["-y", "rankfabrik-mcp"],
"env": { "RANKFABRIK_API_KEY": "rf_xxx" }
}
}
}Cursor
Bouton Ajouter à Cursor
ci-dessus, ou fichier .cursor/mcp.json (projet) / ~/.cursor/mcp.json (global) :
{
"mcpServers": {
"rankfabrik": {
"command": "npx",
"args": ["-y", "rankfabrik-mcp"],
"env": { "RANKFABRIK_API_KEY": "rf_xxx" }
}
}
}Cline
Via l'UI MCP Servers → Configure (édite cline_mcp_settings.json) :
{
"mcpServers": {
"rankfabrik": {
"command": "npx",
"args": ["-y", "rankfabrik-mcp"],
"env": { "RANKFABRIK_API_KEY": "rf_xxx" },
"disabled": false,
"autoApprove": []
}
}
}Continue
MCP fonctionne en mode agent. Fichier .continue/mcpServers/rankfabrik.yaml
(workspace) ou sous ~/.continue/ (global) :
name: RankFabrik
version: 0.0.1
schema: v1
mcpServers:
- name: RankFabrik
command: npx
args:
- "-y"
- "rankfabrik-mcp"
env:
RANKFABRIK_API_KEY: ${{ secrets.RANKFABRIK_API_KEY }}Démarrer (dev / auto-hébergé)
Depuis un clone, en stdio :
RANKFABRIK_API_KEY=rf_xxx node serveur.mjsÀ distance (Streamable HTTP)
MCP_TRANSPORT=http PORT=8090 RANKFABRIK_API_KEY=rf_xxx node serveur.mjs
# point d'entrée : POST http://localhost:8090/mcpConception
Un outil = un appel REST. Aucune logique de collecte dupliquée.
Dégradation propre. Une clé qui ne couvre pas encore un produit (401/403) rend un message actionnable (« prenez une clé d'essai sur … ») plutôt qu'une erreur brute — le canal reste utilisable produit par produit.
Erreurs lisibles. Un rejet de l'API (paramètre manquant, quota épuisé, clé absente) revient comme résultat d'outil
isError, que l'agent peut lire et corriger, jamais comme une exception qui coupe la session.Dépendances isolées. Ce dossier porte le SDK MCP et zod ; le produit REST garde sa règle « zéro dépendance sauf undici ».
Facturation native. Chaque appel passe par l'API de production : le registre existant compte et facture, la clé de l'utilisateur circule dans sa propre configuration MCP et n'est jamais stockée ici.
Dépôt
Ce paquet est publié depuis le dépôt public finalburner/rankfabrik-mcp (canal MCP uniquement). Le moteur REST reste dans un dépôt privé séparé.
This server cannot be deployed
Maintenance
Related MCP Connectors
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
Your agent needs live data — a competitor's traffic, who to contact there, what people are saying, what Google and ChatGPT answer about you, a company's filings. Normally that is six vendor accounts, six sets of keys and six SDKs. This is one URL. **What you can ask for** • "How much traffic does stripe.com get, where does it come from, and who competes for the same keywords?" • "Find 20 Series-B fintech companies in Germany and the heads of marketing there, with emails." • "Does ChatGPT mention our brand when someone asks for the best CRM — and what does it cite?" • "What is X saying about $NVDA today, and what did the stock actually do?" • "Search the web for this, then scrape the three best pages into markdown." **How to use it** Point any MCP client at https://mcp.aisa.one/mcp and sign in with OAuth — there is no key to create or paste. Then just ask: the agent calls search to find the right operation and use to run it. **Why this rather than the source** 26 sources behind one account and one bill — DataForSEO, Semrush, Ahrefs, Similarweb, Apollo, X/Twitter, Instagram, Reddit, Pinterest, YouTube, Tavily, Exa, Perplexity, Firecrawl, CoinGecko, Kalshi, Polymarket, AgentMail and more, 580+ operations. tools/list returns five tools, not 580, so the introduction does not eat your context window. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** One slice at a time: https://mcp.aisa.one/seo/mcp · /finance/mcp · /social/mcp · /search/mcp · /sales/mcp · /mail/mcp · /gtm/mcp, or a single provider like /twitter-api/mcp. Same account, fewer tools listed, and search still reaches everything. Full list at https://mcp.aisa.one/servers
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceA unified MCP server providing AI agents with 40+ developer APIs including geolocation, crypto prices, DNS lookup, and web scraping. Enables natural language access to various tools through a single gateway.1MIT

ReefAPI MCPofficial
AlicenseAqualityCmaintenanceOne MCP server providing access to 160+ live web data APIs (search, social media, e-commerce, real estate, jobs, travel, news, finance, and more) using dynamic discovery via 4 generic tools to avoid the agent's tool limit.53MIT- AlicenseNot gradedqualityDmaintenanceEnables AI agents to access a unified catalog of tools from various APIs (OpenAPI, GraphQL, MCP, Google Discovery) through the MCP protocol.MIT
- AlicenseNot gradedqualityBmaintenanceExposes free-tier AI APIs as MCP tools for AI agents, enabling text generation, web search, embeddings, and vision analysis with automatic failover and capability routing.14MIT