beeper_mcp MCP server
Overview
The beeper_mcp MCP server is a server designed for interacting with a chain, implementing a simple note storage system that allows users to create, summarize, and manage notes.
To use the beeper_mcp server, install it according to the provided quickstart guide, configure it as needed, and utilize the available tools to add and summarize notes.
- Custom note:// URI scheme for accessing individual notes. - Summarization of stored notes with adjustable detail levels. - Ability to add new notes with specified names and content.
- Storing and managing personal notes for easy access.
- Summarizing notes for quick reviews or presentations.
- Integrating with other applications that require note management.
Add to your AI client
Use these steps to connect beeper_mcp MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"beeper-mcp-server-stopwarbywar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"beeper-mcp-server-stopwarbywar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"beeper-mcp-server-stopwarbywar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"beeper-mcp-server-stopwarbywar": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"beeper-mcp-server-stopwarbywar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"beeper-mcp-server-stopwarbywar": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-beeper-mcp-server-stopwarbywar"
]
}
}
}FAQ
What is the note:// URI scheme?
It is a custom scheme used to access individual notes stored in the server.
How do I add a new note?
Use the 'add-note' tool with the required name and content arguments.
Can I customize the summarization style?
Yes, you can specify a 'style' argument to control the detail level of the summaries.