MCP-GITHUB-SERVER MCP server
Overview
MCP-GITHUB-SERVER is a server that implements a simple note storage system, allowing users to create, store, and summarize notes using a custom URI scheme.
To use the server, install it by configuring the necessary files on your system, and then utilize the provided tools to add notes and summarize them.
- Custom note:// URI scheme for accessing individual notes - Summarization of stored notes with adjustable detail levels - Ability to add new notes with specific names and content
- Storing personal notes for easy access and management.
- Summarizing notes for quick reviews or study sessions.
- Integrating with other applications that require note storage and retrieval.
Add to your AI client
Use these steps to connect MCP-GITHUB-SERVER 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": {
"mcp-server-stormbreaker06": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}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": {
"mcp-server-stormbreaker06": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-stormbreaker06": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-stormbreaker06": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-stormbreaker06": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-stormbreaker06": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-stormbreaker06"
]
}
}
}FAQ
How do I add a note?
You can add a note using the 'add-note' tool by providing a name and content.
Can I customize the summarization style?
Yes! You can specify a 'style' argument to control the detail level of the summaries.
Is there a graphical interface for this server?
Currently, the server operates through command-line tools and does not have a graphical interface.