MCP ExplorerExplorer

Notepad Server

@GuoAccounton 10 months ago
1 MIT
FreeCommunity
AI Systems
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

What is Notepad Server

notepad-server is a notes server based on a TypeScript implementation of the Model Context Protocol (MCP). It provides functionalities for adding, removing, and updating notes, and supports integration with Claude Desktop.

Use cases

Use cases for notepad-server include individual note management, team collaboration on projects, and integration with applications like Claude Desktop for enhanced productivity.

How to use

To use notepad-server, install the necessary dependencies using ‘npm install’, build the server with ‘npm run build’, and configure it to work with Claude Desktop by adding the server configuration to the appropriate JSON file.

Key features

Key features include tools for creating new notes, deleting notes, updating existing notes, listing all notes, and using specific notes. It also provides prompts for generating summaries of notes.

Where to use

notepad-server can be used in various fields such as personal note-taking, project management, and collaborative work environments where note sharing and management are essential.

Content

📝 notepad-server MCP Server

中文版

🤖 A Model Context Protocol server

🛠️ This project implements a simple notes system and demonstrates core MCP concepts by providing:

  • Tools for creating new notes
  • Prompts for generating summaries of notes

🌟 Features

🛠️ Tools

addNotepad

  • Description: Add a new notepad
  • Parameters:
    • name (string): Name of the notepad
    • content (string): Content of the notepad

delNotepad

  • Description: Delete a notepad
  • Parameters:
    • id (number): ID of the notepad to delete

updateNotepad

  • Description: Update a notepad
  • Parameters:
    • id (number): ID of the notepad to update
    • content (string): New content for the notepad

listNotepads

  • Description: List all notepads
  • Parameters: None

useNotepad

  • Description: Use a specific notepad
  • Parameters:
    • id (number): ID of the notepad to use

🛠️ Development

Install dependencies:

npm install

Build the server:

npm run build

For development with auto-rebuild:

npm run watch

📥 Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "notepad-server": {
      "command": "/path/to/notepad-server/build/index.js"
    }
  }
}

🔍 Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers