beerman
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@beermanstore milestone: completed auth module refactor"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
πΊ BeerMan - Long-Term Project Memory Engine
BeerMan is a professional pair-programming memory system that acts as a continuous intelligence bridge between your IDE agents (Anti-Gravity, Claude Code, Cursor) and your planning sessions. It leverages Supermemory as a centralized, canonical vector store for all architectural guidelines, design decisions, code watchers, and context captures.
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Planning & Session β
β (ChatGPT / Claude Web Chats / Scrolling Screenshots) β
ββββββββββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββ
β (Browser Sidebar Extension)
βΌ
ββββββββββββββββββββββββββββββββ
β Supermemory Vector Store β
ββββββββββββββββ¬ββββββββββββββββ
β (Memory Bridge / MCP API)
βΌ
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Development Workspace β
β (Anti-Gravity / Claude Code / Cursor / VS Code) β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ‘ Quick Start (One-Liner)
Run the following command in your terminal to instantly clone, install dependencies, compile TypeScript packages, and start the development servers:
git clone https://github.com/nitineeen/beerman.git && cd beerman && npm install && npm run build && npm run devOnce running, your local dashboard will be hosted at http://localhost:2414.
Related MCP server: myBrAIn
ποΈ System Architecture & Monorepo Layout
BeerMan is built as a TypeScript monorepo where components have single, isolated responsibilities:
project-beerman/
βββ apps/
β βββ extension/ # Unpacked Manifest V3 Chrome Sidebar Extension
β βββ dashboard/ # Next.js workspace management dashboard & setup guide
βββ packages/
β βββ core/ # Shared project type definitions, categories, and models
β βββ memory/ # Supermemory client SDK for ingestion and semantic searches
β βββ mcp-server/ # Model Context Protocol (MCP) server integration
βββ .agents/
βββ skills/ # Structured agent guidelines (YAML + Markdown format)1. Chrome Extension Sidebar (apps/extension)
Slides out on the right viewport, automatically resizing and rendering target webpages responsively.
Direct Supermemory integration for live project creation, renaming, and document deletion.
Features sequential upload queueing with robust error handling and duplicate prevention.
Seamlessly captures raw text selections, full-page screenshots, files, and chat logs.
2. BeerMan Dashboard (apps/dashboard)
Next.js web application that displays your living docs, project indexing details, and setup guides.
3. Model Context Protocol Server (packages/mcp-server)
Exposes tools to your AI agent so it can interact with your memory directly:
list_projects: Lists registered project indices.open_project(projectId): Selects active context.store_memory(content, category, tags): Commits structured milestones, decisions, architecture specs, or roadmaps.search_memory(query): Performs vector/semantic search on project memory.
π Setup & Installation
Step 1: Install Dependencies & Build
Compile the TypeScript packages and Next.js applications:
npm install
npm run buildStep 2: Configure the MCP Server in your IDE
Add the BeerMan MCP server configuration to link it with your agent. Ensure you replace /absolute/path/to/project-beerman with your actual directory path.
For Anti-Gravity or Claude Code:
Add this configuration block to your global configurations at ~/.gemini/config/mcp_config.json or ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"beerman": {
"command": "node",
"args": ["/absolute/path/to/project-beerman/packages/mcp-server/dist/index.js"],
"env": {
"SUPERMEMORY_API_KEY": "your_supermemory_api_key_here"
}
}
}
}For Cursor:
Navigate to Settings > Features > MCP.
Click + Add New MCP Server.
Fill out the fields:
Name:
beermanType:
commandCommand:
node /absolute/path/to/project-beerman/packages/mcp-server/dist/index.js
Under Environment Variables, add
SUPERMEMORY_API_KEYwith your API key.
Step 3: Install the Chrome Sidebar Extension
Open Google Chrome and go to
chrome://extensions/.Toggle Developer mode on (top-right corner).
Click Load unpacked (top-left corner).
Select the directory:
project-beerman/apps/extension.Click the extension icon in your toolbar to open the right-side panel.
Enter your Supermemory API Key, and manage your projects dynamically.
π οΈ Deploying & Sharing
1. Deploying the Dashboard (Vercel)
The dashboard can be instantly deployed to Vercel:
Connect this repository to your Vercel Account.
Set the Root Directory to
apps/dashboard.Vercel will automatically compile the Next.js bundle and deploy it.
2. Sharing the Extension
Unpacked: Zip the
apps/extensionfolder and distribute it to your team to load via Developer Mode.Chrome Web Store: Package the extension and upload it to the Chrome Developer Dashboard to publish it.
3. MCP Server Cloud Deployment
You can host the MCP server on Railway, Fly.io, or Render, exposing it via SSE (Server-Sent Events) or standard stdio transports, allowing team members to connect to the same remote memory.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityBmaintenanceMCP server that provides cross-session persistent memory for AI coding assistants using local vector database and semantic search, enabling automatic recall of project context, issues, and tasks.991Apache 2.0
- Alicense-qualityDmaintenanceMCP server that provides persistent memory and contextual awareness to language models, enabling project onboarding, recall of architectural rules, and code consistency across sessions.32MIT
- Alicense-qualityDmaintenanceMCP server that provides a shared semantic memory layer for AI coding agents, enabling teams to store, search, and sync context, decisions, and knowledge across projects with project-based isolation and multi-backend support.1MIT
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nitineeen/beerman'
If you have feedback or need assistance with the MCP directory API, please join our Discord server