Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add vibeprospecting-mcp -- uvx vibeprospecting-mcp{
"mcpServers": {
"vibeprospecting-mcp": {
"command": "uvx",
"args": ["vibeprospecting-mcp"]
}
}
}Resumen de MCP Servers
# Vibe Prospecting <img src="logo.png" alt="Vibe Prospecting Logo" width="90"> **Power your chat with live B2B data — build lead lists, research companies, enrich contacts, and personalize outreach, all from inside your AI assistant.** Vibe Prospecting is a **remote MCP server**. There's nothing to run locally and no API key to manage — you connect over a single URL and sign in through your browser on first use. > **MCP endpoint:** `https://vibeprospecting.explorium.ai/mcp` --- ## What you can do - 🔎 **Find companies** by name, domain, industry, size, location, tech stack, and more - 👤 **Discover & enrich contacts** — roles, profiles, and buying signals at any company - 🏢 **Research firms** — firmographics, technographics, funding, competitors, and challenges - 📈 **Analyze & export** — preview a sample instantly, then export the full dataset to CSV when you're ready You always see a **sample preview first** (5–10 rows). The full dataset is only processed when you explicitly ask to export — so exploring is fast and credit-friendly. --- ## Installation Pick your tool below. All clients connect to the same remote endpoint and authenticate through your browser (OAuth) on first use. ### Claude Code ⭐ recommended One line — paste it into your terminal: ```bash claude mcp add --transport http vibe-prospecting https://vibeprospecting.explorium.ai/mcp ``` Then start (or restart) Claude Code and run a prompt that uses it (see [Examples](#examples)). The first call opens your browser to sign in. Verify the connection anytime with: ```bash claude mcp list # vibe-prospecting: https://vibeprospecting.explorium.ai/mcp - ✓ Connected ``` ### Cowork & Claude Desktop Add it as a custom connector through the UI (no terminal needed): 1. Open **Customize → Connectors** in Chat/Cowork/Code in Claude Desktop 2. Click the **+** next to *Connectors* and choose **Browse connectors** 3. Under `Anthropic & Partners` look for **Name:** `Vibe Prospecting` — **URL:** `https://vibeprospecting.explorium.ai/mcp` 4. Click **+** and then click **Install**, then follow the sign-in prompts to grant access Once added, Vibe Prospecting's tools are available to Claude automatically. ### Codex CLI One command — Codex detects OAuth automatically and opens your browser to sign in: ```bash codex mcp add vibe-prospecting --url https://vibeprospecting.explorium.ai/mcp ``` Confirm it's connected with `codex mcp list` (look for `Auth: OAuth`), or start a Codex session and run `/mcp` to see its tools. If you ever need to re-authenticate, run `codex mcp login vibe-prospecting`. > **No native OAuth in your Codex version?** Use the universal `mcp-remote` bridge instead. Add this block to `~/.codex/config.toml` — it opens the browser for sign-in on first use: > > ```toml > [mcp_servers.vibe-prospecting] > command = "npx" > args = ["-y", "mcp-remote", "https://vibeprospecting.explorium.ai/mcp"] > ``` ### Gemini CLI Install the extension directly from this repository: ```bash gemini extensions install https://github.com/explorium-ai/vibeprospecting-mcp ``` The extension is loaded and managed automatically by Gemini CLI, and OAuth sign-in is handled on first use. See the [Gemini CLI extensions docs](https://geminicli.com/docs/extensions/) for details. ### Manus Connect Vibe Prospecting from Manus’s built-in connectors UI (no local server or API key): 1. Open the **connectors** menu (or choose **+ Add connectors**). 2. Search for **`vibe`**. 3. Under **Apps**, select **Vibe Prospecting** (“Build B2B lead lists and enrich companies and contacts”). 4. Confirm the connector details (MCP by Explorium), then click **Try it out** / connect and complete the browser sign-in. Once connected, use Vibe Prospecting from a Manus chat with prompts like those in [Examples](#examples). ### Hermes Hermes uses the same remote endpoint, but its CLI needs the server written to config plus an explicit OAuth login. Run these in your terminal: 1. **Register the server** — write **both** keys directly under `mcp_servers:`, which is the namespace `hermes mcp login` (and the runtime) read from: ```bash hermes config set mcp_servers.vibe_prospecting.url "https://vibeprospecting.explorium.ai/mcp" hermes config set mcp_servers.vibe_prospecting.auth oauth ``` Don't use `hermes mcp add`: in a non-interactive shell it can fail mid-way and save a **disabled, half-written entry** under `mcp_servers:` — `auth` set but `url` dropped — which then fails at login. Setting both keys yourself avoids it, and if you already hit it, the same two commands repair it. (A `url` showing up elsewhere in config doesn't count — `hermes mcp login` only reads `mcp_servers:`.) 2. **Sign in** — opens your browser to authenticate: ```bash hermes mcp login vibe_prospecting ``` On a **remote, SSH, or Docker** host, the browser can't reach the local callback after you approve — that's expected. Copy the **full URL** from the address bar and paste it back at the Hermes prompt. 3. **Verify & use** — `hermes mcp list` should show `vibe_prospecting` as authenticated. Start a new chat so the `mcp_vibe_prospecting_*` tools load, then try a prompt from [Examples](#examples). To get a CSV, ask Hermes to **"export and download"** (exports return a link, not the file itself). > **Connection drops on the first call?** The default MCP discovery timeout is too short for the OAuth handshake — raise it: `hermes config set mcp_discovery_timeout 10`. --- ## Examples Once connected, just ask in plain language: ``` Who should I contact for a partnership with monday.com? Get anyone who can promote a partnership with them, with all the contact details you can find. ``` ``` What are the business challenges of Amazon? ``` ``` Get the engineering leadership team at Palo Alto Networks. ``` ``` Find B2B SaaS companies in New York with 50–200 employees, then enrich the decision-makers and export the list to CSV. ``` --- ## Authentication & credits - **Sign-in:** OAuth through your browser on first use — no API keys to copy or store. - **Free to explore:** searching and previewing samples is lightweight. Exporting the full dataset uses credits. - **Pricing & credits:** <https://www.vibeprospecting.ai/pricing> --- ## Troubleshooting - **`Failed to connect` / error `-32000` in Claude Code** — this happens with the old local `uvx vibeprospecting-mcp` (stdio) command. That path is **deprecated**; use the `--transport http` command above instead. - **Connector won't connect in Cowork/Desktop** — the server is reached from Anthropic's cloud, so the URL must be publicly reachable. Double-check the URL is exactly `https://vibeprospecting.explorium.ai/mcp`. - **Re-authenticate** — in Claude Code run `claude mcp remove vibe-prospecting` then re-add it; in Codex run `codex mcp login vibe-prospecting` again; in Hermes run `hermes mcp login vibe_prospecting` again. --- ## Support & documentation - [API Documentation](https://docs.vibeprospecting.ai) - [Support & Help Center](https://www.vibeprospecting.ai/contact-us) - [Vibe Prospecting Homepage](https://www.vibeprospecting.ai) For technical support, contact support@vibeprospecting.ai. ## License This project is licensed under the Explorium Term of Service. See [Term of Service](https://www.vibeprospecting.ai/terms-of-service) for details.
Lo que la gente pregunta sobre vibeprospecting-mcp
¿Qué es explorium-ai/vibeprospecting-mcp?
+
explorium-ai/vibeprospecting-mcp es mcp servers para el ecosistema de Claude AI. Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more. Tiene 33 estrellas en GitHub y su última actualización registrada es del 2026-09-08.
¿Cómo se instala vibeprospecting-mcp?
+
Puedes instalar vibeprospecting-mcp clonando el repositorio (https://github.com/explorium-ai/vibeprospecting-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar explorium-ai/vibeprospecting-mcp?
+
Nuestro agente de seguridad ha analizado explorium-ai/vibeprospecting-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene explorium-ai/vibeprospecting-mcp?
+
explorium-ai/vibeprospecting-mcp es mantenido por explorium-ai. La última actividad registrada en GitHub es del 2026-09-08, con 2 issues abiertos.
¿Hay alternativas a vibeprospecting-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega vibeprospecting-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/explorium-ai-vibeprospecting-mcp)<a href="https://claudewave.com/repo/explorium-ai-vibeprospecting-mcp"><img src="https://claudewave.com/api/badge/explorium-ai-vibeprospecting-mcp" alt="Featured on ClaudeWave: explorium-ai/vibeprospecting-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!