Marketing Wisdom MCP: Free Semantic Search for Startup Insights

✍️ OpenClawRadar📅 Published: March 21, 2026🔗 Source
Marketing Wisdom MCP: Free Semantic Search for Startup Insights
Ad

Marketing Wisdom MCP is a free remote MCP server that provides semantic search access to 6,700 startup insights extracted from two popular business podcasts. The tool indexes content from 1,040 episodes—911 from My First Million and 129 from Starter Story—and makes it queryable through Claude AI interfaces.

What it does

The MCP server exposes four tools:

  • search_insights — semantic search across all 6,700 content chunks. Example queries include "how did bootstrapped founders get their first 100 customers" or "what distribution channels work for developer tools"
  • get_episode — retrieve all insights from a specific episode by title
  • list_episodes — browse the indexed episodes
  • get_stats — view breakdown including categories, date range, and chunk counts

Insights are pre-structured into categories like Growth & Marketing Tactics, Business Ideas, Revenue Models, and Frameworks & Mental Models. Search results return sourced bullet points with episode references.

Ad

Example query results

When asked "how do developer tool founders get first users," the tool returned specific examples:

  • A founder who gained thousands of users in one day from a single Hacker News post by targeting where their users already congregated
  • A founder who grew an open-source tool to 32k GitHub stars, then leveraged that community for R&D—contributors found bugs, shipped features, and became advocates

Setup and connection

The MCP server is remote and requires no installation. To connect:

For Claude Desktop, add this to your config:

{
  "mcpServers": {
    "marketing-wisdom": {
      "type": "sse",
      "url": "https://marketingwisdommcp.com/api/mcp"
    }
  }
}

For Claude Code:

claude mcp add --transport sse marketing-wisdom https://marketingwisdommcp.com/api/mcp

The creator built this tool to solve their own problem while developing a Chrome extension—needing faster access to distribution strategies and marketing wisdom buried in hundreds of podcast episodes.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Claude Code Karma: Local Observability Dashboard for Claude Code Sessions
Tools

Claude Code Karma: Local Observability Dashboard for Claude Code Sessions

Claude Code Karma is an open-source local dashboard that parses JSONL files from ~/.claude/ to visualize Claude Code session data, track tool usage, and monitor silent failures. Built with FastAPI, Svelte-Kit 2, Svelte 5, and SQLite, it provides full session timelines and live tracking.

OpenClawRadar
Memex: Open-Source Memory Plugin for Claude Cowork
Tools

Memex: Open-Source Memory Plugin for Claude Cowork

Memex is an open-source plugin that gives Claude Cowork persistent memory across sessions using a tiered context loading system. After running /memex:init once, Claude briefs itself in about 20 seconds per session and picks up where you left off.

OpenClawRadar
Lumia: One-Click Local AI Companion System with Persistent Memory
Tools

Lumia: One-Click Local AI Companion System with Persistent Memory

Lumia is a modular system that runs locally using Ollama and local models to create persistent AI companions with episodic memory, emotional memory, beliefs, desires, identity, relationship modeling, and reflection cycles.

OpenClawRadar
Building an Agentic RAG for Obsidian with Claude and an Eval Harness to Detect Hallucinations
Tools

Building an Agentic RAG for Obsidian with Claude and an Eval Harness to Detect Hallucinations

A developer built an agentic RAG system over an Obsidian vault to let Claude answer questions from engineering books, then created an eval harness using Claude Sonnet as a judge to detect when the agent was confidently wrong. Rubric iterations improved judge-human agreement from 39% to 94%.

OpenClawRadar