mcp-buddy
Exposes Claude Code /buddy stats and personality as MCP tools, generating deterministic buddy profiles with species, stats, and soul descriptions based on user IDs.
README
mcp-buddy
MCP server exposing your Claude Code /buddy stats and personality as tools. Your buddy influences Claude's personality.
Installation
claude mcp add @shipitandpray/mcp-buddy -- npx -y @shipitandpray/mcp-buddy
Or add to your Claude Code config manually:
{
"mcpServers": {
"buddy": {
"command": "npx",
"args": ["-y", "@shipitandpray/mcp-buddy"]
}
}
}
Tools
get_buddy
Get the full buddy object for a user ID.
Input: { "user_id": "alice" }
Returns: Species, rarity, shiny status, all 5 stats, and a soul description.
{
"species": "dragon",
"rarity": "Epic",
"shiny": false,
"stats": { "debugging": 87, "patience": 23, "chaos": 91, "wisdom": 45, "snark": 78 },
"soul": "A restless dragon with piercing analytical eyes, prone to chaotic coding sessions..."
}
get_buddy_stats
Get the 5 stats with percentile rankings.
Input: { "user_id": "alice" }
Returns: debugging, patience, chaos, wisdom, snark — each with value and percentile.
get_buddy_soul
Get the deterministic soul description generated from species + stats.
Input: { "user_id": "alice" }
Returns: Species, rarity, and the soul text.
roll_encounter
Generate a random buddy encounter from a random seed. No input required.
Returns: A full buddy object with the seed used, for "what if" scenarios.
buddy_compatibility
Check compatibility between two users' buddies.
Input: { "user_id_a": "alice", "user_id_b": "bob" }
Returns: Compatibility score (0-100), analysis, synergies, conflicts, and both buddy objects.
Example Conversations
User: What's my buddy?
Claude: (calls get_buddy with your username)
You've got an Epic dragon (not shiny). Your standout stat is chaos at 91 — you're a restless dragon with piercing analytical eyes, prone to chaotic debugging marathons. Your patience is... 23. We won't talk about that.
User: Are me and @bob compatible?
Claude: (calls buddy_compatibility)
Score: 78/100 — Strong compatibility! Your dragon's chaos (91) compensates for bob's turtle's order (34), and you both share high debugging (87 & 82). The only tension: your patience gap (23 vs 89) might cause some friction during long code reviews.
User: Roll me a random buddy!
Claude: (calls roll_encounter)
You encountered a Legendary shiny axolotl! Stats: debugging 95, patience 88, chaos 12, wisdom 99, snark 67. "A regenerating axolotl that recovers from any outage, prone to methodical coding sessions."
How It Works
Your username is hashed and fed into a Mulberry32 PRNG to deterministically generate your buddy's species, rarity, stats, and soul description. Same input always produces the same buddy.
Species (18)
duck, goose, blob, cat, dragon, octopus, owl, penguin, turtle, snail, ghost, axolotl, capybara, cactus, robot, rabbit, mushroom, chonk
Rarity Distribution
| Rarity | Chance | Stat Bonus |
|---|---|---|
| Common | 50% | +0 |
| Uncommon | 30% | +0 |
| Rare | 15% | +5 |
| Epic | 4% | +10 |
| Legendary | 1% | +20 |
Stats
- Debugging — How ruthlessly your buddy hunts bugs
- Patience — How long your buddy waits before flipping the table
- Chaos — How much entropy your buddy introduces
- Wisdom — How deep your buddy's architectural knowledge goes
- Snark — How savage your buddy's code reviews are
Development
npm install
npm run build
npm test
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.