๐ notepad-server MCP Server
Notes server based on TypeScript implementation of the MCP protocol, providing functions for adding, removing, and updating notes, and supporting integration with Claude Desktop.ๅบไบ TypeScript ๅฎ็ฐ็ MCP ๅ่ฎฎ็ฌ่ฎฐๆๅกๅจ,ๆไพ็ฌ่ฎฐ็ๆทปๅ ใๅ ้คใๆดๆฐ็ญๅ่ฝ,ๆฏๆไธ Claude Desktop ้ๆใ
Overview
notepad-server is a notes server based on TypeScript implementation of the MCP protocol, providing functions for adding, removing, and updating notes, and supporting integration with Claude Desktop.
To use notepad-server, install the dependencies, build the server, and configure it with Claude Desktop by adding the server config to the appropriate directory based on your operating system.
- Tools for creating new notes - Prompts for generating summaries of notes - Functions for adding, deleting, and updating notes - Integration with Claude Desktop
- Managing personal notes efficiently.
- Collaborating on notes with team members.
- Integrating note-taking capabilities into applications using the MCP protocol.
Add to your AI client
Use these steps to connect ๐ notepad-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": {
"notepad-server-guoaccount": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}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": {
"notepad-server-guoaccount": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"notepad-server-guoaccount": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"notepad-server-guoaccount": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"notepad-server-guoaccount": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"notepad-server-guoaccount": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notepad-server-guoaccount"
]
}
}
}FAQ
Can I use notepad-server without Claude Desktop?
Yes, but integration with Claude Desktop enhances its functionality.
How do I install notepad-server?
Install dependencies using `npm install`, then build the server with `npm run build`.
What is the MCP protocol?
The Model Context Protocol (MCP) is a protocol designed for communication between models and applications.