cryptosquanch/legends-mcp

🧠 Knowledge & Memory🟢 Verified Active
0 Views
0 Installs

📇 🏠 🍎 🪟 🐧 - Chat with 36 legendary founders & investors (Elon Musk, Warren Buffett, Steve Jobs, CZ). AI personas with authentic voices, frameworks, and principles. No API key required.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "cryptosquanch-legends-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "cryptosquanch-legends-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

🏛️ Legends MCP

npm version License: MIT

Chat with legendary founders & investors in Claude. No API key required!

Ever wanted to ask Elon Musk about first principles? Get Warren Buffett's take on your investment? Have Steve Jobs roast your product design? Get Paul Graham and Marc Andreessen to debate your startup idea?

Now you can. With Party Mode, multiple legends can discuss your questions together!


✨ What's New in v1.4

FeatureDescription
🎭 Party ModeMultiple legends discuss your question together
🔮 Smart SuggestProactively recommends relevant legends
🎯 Auto MatchDeep analysis of which legends fit your topic
🔒 Security FixesPrompt injection protection, input sanitization

🚀 Quick Start

Claude Code (~/.claude/settings.json):

{
  "mcpServers": {
    "legends": {
      "command": "npx",
      "args": ["legends-mcp"]
    }
  }
}

That's it. No API key needed. Restart Claude Code and start chatting!


🎭 Party Mode - Multi-Legend Discussions

Ask complex questions and get perspectives from multiple legends:

You: "How should I approach raising my seed round?"

Claude: *Activates Party Mode with Paul Graham, Marc Andreessen, and Bill Gurley*

Paul Graham: "The best fundraising advice is: make something people want first.
Don't optimize for raising money. Optimize for building something users love..."

Marc Andreessen: "Software is eating the world, and VCs know it. Show us
the market size. Show us why NOW is the time..."

Bill Gurley: "Valuation is a vanity metric. What matters is finding partners
who truly understand your business..."

When Party Mode Activates

  • Complex questions with multiple valid perspectives
  • "Pros and cons" or "different viewpoints" requests
  • Debates between different schools of thought
  • Questions matching 2+ legends' expertise

🔮 Smart Suggest - Proactive Recommendations

The suggest tool analyzes your question and returns ready-to-execute actions:

User: "How do I build a crypto exchange?"

suggest() returns:
┌─────────────────────────────────────────────────┐
│ primary_action: {                               │
│   tool: "party_mode",                           │
│   params: {                                     │
│     question: "How do I build a crypto exchange"│
│     legends: ["cz-binance", "brian-armstrong"]  │
│   }                                             │
│ }                                               │
│                                                 │
│ suggested_actions: [                            │
│   { tool: "party_mode", ... },                  │
│   { tool: "summon_legend", id: "cz-binance" },  │
│   { tool: "summon_legend", id: "brian-armstrong"│
│   { tool: "auto_match", ... }                   │
│ ]                                               │
└─────────────────────────────────────────────────┘

Claude picks the best option and executes it!

👥 The Council of Legends (36 Total)

🚀 Tech Titans

LegendSpecialty
Elon MuskFirst principles, physics thinking, building the impossible
Steve JobsProduct design, reality distortion, user experience
Jeff BezosDay 1 thinking, customer obsession, long-term vision
Jensen HuangGPUs, AI infrastructure, CUDA everything
Satya NadellaEnterprise transformation, cloud, culture change

💰 Legendary Investors

LegendSpecialty
Warren BuffettValue investing, compound interest, circle of competence
Charlie MungerMental models, multidisciplinary thinking, inversion
Ray DalioPrinciples, radical transparency, macro investing
Peter ThielZero to one, contrarian bets, monopolies
Marc AndreessenSoftware eating world, venture capital, tech optimism

🌱 Startup Sages

LegendSpecialty
Paul GrahamEssays, YC wisdom, making things people want
Sam AltmanStartups, AI/AGI, scaling companies
Naval RavikantWealth creation, leverage, specific knowledge
Reid HoffmanNetwork effects, blitzscaling, LinkedIn
Brian CheskyDesign thinking, Airbnb, company culture

⛓️ Crypto Builders

LegendSpecialty
CZ (Changpeng Zhao)Exchange building, BUIDL, global expansion
Vitalik ButerinEthereum, smart contracts, crypto philosophy
Anatoly YakovenkoSolana, proof of history, performance
Balaji SrinivasanNetwork state, crypto predictions, tech trends

...and 17 more legends including Tim Ferriss, Gary Vaynerchuk, Tobi Lütke, and others!


🛠️ All Tools

ToolPurposeExample
suggest🔮 Proactive recommendationsAnalyzes your question, suggests best legend(s)
party_mode🎭 Multi-legend discussionGet 2-5 legends to discuss together
summon_legend👤 Single legend adviceChannel one legend's perspective
auto_match🎯 Deep legend discoveryDetailed analysis of which legends fit
list_legends📋 Browse all legendsSee all 36 available legends
search_legends🔍 Find by keywordSearch by expertise, name, or topic
get_legend_context📖 Deep diveGet frameworks, principles, examples
get_legend_insight💡 Quick wisdomGet a concise insight on any topic

🔒 Security

v1.3+ includes security hardening:

  • Prompt injection protection - User context isolated from system prompts
  • Input sanitization - Detects and neutralizes injection attempts
  • Safe output encoding - JSON encoding prevents markdown injection
  • No CWD loading - Only loads bundled legends (opt-in for custom)
  • No external APIs - Zero network requests, zero data leakage

📊 How It Works

┌─────────────────────────────────────────────────────────────┐
│                    ARCHITECTURE                              │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│   User Question                                              │
│        │                                                     │
│        ▼                                                     │
│   ┌──────────────────┐                                       │
│   │  suggest()       │  ← Analyzes question                  │
│   │  "Who can help?" │                                       │
│   └────────┬─────────┘                                       │
│            │                                                 │
│            ▼                                                 │
│   ┌──────────────────┐     ┌──────────────────┐             │
│   │  party_mode()    │ OR  │  summon_legend() │             │
│   │  (multi-legend)  │     │  (single legend) │             │
│   └────────┬─────────┘     └────────┬─────────┘             │
│            │                        │                        │
│            ▼                        ▼                        │
│   ┌──────────────────────────────────────────────┐          │
│   │           legends/*.yaml                      │          │
│   │  (36 bundled persona files - NO API calls!)  │          │
│   └──────────────────────────────────────────────┘          │
│            │                                                 │
│            ▼                                                 │
│   Claude adopts persona(s) and responds in character!       │
│                                                              │
└─────────────────────────────────────────────────────────────┘

Zero external APIs. Zero API keys. Just Claude + persona data.


🎯 Usage Examples

Get startup advice from multiple perspectives

"What's the most important thing for a first-time founder?"
→ Party Mode: Paul Graham + Sam Altman + Brian Chesky discuss

Deep dive on investing

"Should I invest in Bitcoin?"
→ Warren Buffett (skeptic) vs Balaji (bull) debate

Technical decisions

"How do I scale my database?"
→ Summon Jeff Bezos for Day 1 / SOA thinking

Life advice

"How do I build wealth?"
→ Naval Ravikant on leverage, specific knowledge, equity

⚙️ Environment Variables

VariableDefaultDescription
LEGENDS_MCP_LEGENDS_DIR(bundled)Custom legends directory
LEGENDS_MCP_ALLOW_CWDfalseAllow loading from current directory
LEGENDS_MCP_DEBUGfalseEnable debug logging

⚠️ Disclaimers

⚠️ NOT affiliated with, endorsed by, or representative of any real individual
⚠️ NOT financial, legal, or professional advice
⚠️ AI personas for EDUCATIONAL and ENTERTAINMENT purposes only
⚠️ Based on publicly available information, speeches, and writings
⚠️ Always do your own research (DYOR)

The views expressed by these AI personas are generated interpretations, not actual statements from the real people.


🤝 Contributing

Want to add a legend? PRs welcome!

Each legend needs:

  • legends/<name>/skill.yaml with identity, voice, principles, patterns
  • Authentic voice based on public knowledge
  • Clear guardrails (things they'd never say)

See existing legends for examples.


📄 License

MIT - Use freely, but include the disclaimers.


🏛️ "The best time to get advice from a legend was 20 years ago.
The second best time is now."

npmGitHubGlama

Related MCP Servers

modelcontextprotocol/server-memoryVerified

📇 🏠 - Knowledge graph-based persistent memory system for maintaining context

🧠 Knowledge & Memory2 views
0xshellming/mcp-summarizer

📕 ☁️ - AI Summarization MCP Server, Support for multiple content types: Plain text, Web pages, PDF documents, EPUB books, HTML content

🧠 Knowledge & Memory0 views
20alexl/claude-engram

🐍 🏠 - Persistent memory and session intelligence for Claude Code. Auto-tracks mistakes, decisions, and context via hooks. Mines session history for patterns and cross-session search. Loop detection, pre-edit warnings, context compaction survival. Runs locally with Ollama.

🧠 Knowledge & Memory0 views
a2cr/a2cr

🐍 ☁️ 🏠 🍎 🪟 🐧 - MCP server for AI-agent handoffs. Saves client-encrypted WorkBaton checkpoints and WorkStash notes so Codex, Claude Code, Roo Code, and other MCP clients can resume work without passing full chat history.

🧠 Knowledge & Memory0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 9:23:14 PM

Unclaimed listing (imported or pending owner verification). Claim it →
★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.