Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Knowledge & Memory
  3. Legends MCP
  4. README

Legends MCP README

The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Legends MCP listing page.

Back to Legends MCP View source on GitHub

🏛️ 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):

config.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:

Code
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:

Code
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

Code
┌─────────────────────────────────────────────────────────────┐
│                    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

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

Deep dive on investing

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

Technical decisions

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

Life advice

Code
"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

Code
⚠️ 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."

npm • GitHub • Glama