berbotu-mcp
Allows creating new demo files in the vault by committing to a GitHub repository via the GitHub API.
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., "@berbotu-mcpWhat demos are in the listening stage?"
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.
berbotu-mcp
Model Context Protocol server for the Berbotu vault. Currently stage 3 — four tools over stdio:
ping— health check (no args)list_demos— lists demo submissions, optional stage filter + limitlist_releases— lists tracks + EPs, optional stage filter, format filters, limitadd_demo✍️ — creates a new demo file via GitHub commit (write tool)
Quick start
npm install
npm run build # compile TS → dist/
npm run inspect # open MCP Inspector (web UI) to call toolsOr attach to Claude Desktop by adding to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"berbotu": {
"command": "node",
"args": ["/path/to/berbotu-mcp/dist/index.js"],
"env": {
"BERBOTU_VAULT_PATH": "/path/to/Berbotu OS"
}
}
}
}Restart Claude Desktop. The ping tool will appear under "Search and tools".
Related MCP server: git-mcp
Tools
ping
No arguments. Returns server name + version + vault path + timestamp + pid + node version. Use to confirm the server is alive and pointing at the right vault.
list_demos
Lists demo submissions from <vault>/00 Releases/Demos/, sorted newest-first by received_date.
Arguments (all optional):
stage(string) — case-insensitive substring of the demo stage. Common values:Listening,Review,Interested,Hold,Pass,Converted.limit(integer 1–200) — cap on returned items.
Returns one line per demo: [stage] artist — title ⭐score (received YYYY-MM-DD).
Example: ask Claude "what demos came in this week that I haven't decided on yet?" → it calls list_demos with stage: "Listening".
list_releases
Lists track + EP releases from <vault>/00 Releases/Tracks/ and <vault>/00 Releases/EPs/, sorted newest-first by release_date.
Arguments (all optional):
stage(string) — case-insensitive substring filter. Common:Released,Scheduled,DITTO Submitted,On Hold.includeEps(boolean, default true) — include EPs.includeTracks(boolean, default true) — include single-track releases.limit(integer 1–200).
Returns one line per release: [stage] YYYY-MM-DD · artist — title (single|EP · genre).
Example: "what's the next release scheduled?" → list_releases with stage: "Scheduled", limit: 1.
Error handling
All tools return a friendly isError: true message instead of throwing when:
BERBOTU_VAULT_PATHenv var is not set (read tools)VAULT_WRITE_PATenv var is not set (write tools only)The path exists but the
Demos//Tracks//EPs/folder is missingIndividual files are unreadable (silently skipped per file)
A YAML frontmatter is malformed (treated as empty data)
GitHub API returns a non-2xx (422 = file already exists, 401 = bad PAT, etc.)
Network unreachable
add_demoinvoked with empty artist or track (zod rejects pre-flight)
add_demo
Creates a new demo file in the vault by committing to the berbotu/vault GitHub repo. Write tool — declares destructiveHint: true, openWorldHint: true so MCP-aware clients can warn before invoking.
Required:
artist(string, 1–120 chars) — producer aliastrack(string, 1–200 chars) — track title (useUNTITLEDif none)
Optional:
stage(enum) —Listening(default) /Review/Interested/Hold/Pass/Convertedreceived_date(string YYYY-MM-DD) — defaults to today UTCnotes(string ≤ 2000 chars) — free-text card notes
Refuses to overwrite. If a demo at 00 Releases/Demos/{ARTIST} - {TITLE}.md already exists, returns isError with a "use the admin website to edit" message.
Success returns the file path, the frontmatter that was written, the commit SHA, and a permalink to the commit on github.com.
Requires VAULT_WRITE_PAT env (GitHub fine-grained PAT with Contents: Read and write on berbotu/vault).
Scripts
npm run build— compile TS todist/npm run dev— tsx watch mode (re-runs on src change)npm run start— run compiled server (stdio)npm run inspect— build + open MCP Inspectornpm run typecheck— type check without emit
Roadmap
See CLAUDE.md. Stage 1 done; stages 2–5 pending.
License
Internal. Not for redistribution.
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.
Latest Blog Posts
- 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/berbotu/berbotu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server