MCP Notepad Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_noteC | 새로운 메모를 생성합니다. 제목과 내용을 입력받고, 선택적으로 태그를 추가할 수 있습니다. |
| update_noteC | 기존 메모를 수정합니다. 제목, 내용, 태그를 변경할 수 있습니다. |
| delete_noteC | 메모를 삭제합니다. |
| search_notesB | 키워드로 메모를 검색합니다. 제목, 내용, 태그에서 검색합니다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| summarize_note | 선택한 메모의 내용을 요약합니다. |
| extract_tags | 메모 내용에서 적절한 태그를 추출하여 제안합니다. |
| organize_notes | 저장된 모든 메모를 분석하여 정리 방법을 제안합니다. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| notes-list | 저장된 모든 메모의 목록을 제공합니다. |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: create_note for creation, delete_note for deletion, search_notes for searching, and update_note for modification. There is no overlap in functionality, making it easy for an agent to select the correct tool without confusion.
All tool names follow a consistent verb_noun pattern (e.g., create_note, delete_note, search_notes, update_note). The naming is uniform and predictable, with no deviations in style or convention.
With 4 tools, this server is well-scoped for a notepad application, covering essential CRUD operations (create, read via search, update, delete). Each tool earns its place without being excessive or insufficient for the domain.
The tool set provides complete CRUD coverage for the notepad domain: create_note for creation, search_notes for reading/retrieval, update_note for updates, and delete_note for deletion. There are no obvious gaps, ensuring agents can handle full note lifecycle management.