Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
NOTES_MCP_DIRNoDirectory to store notes (default: ~/.notes-mcp/notes/)

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

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
add_noteA

Save a new note.

Args:
    title: Short title for the note.
    content: The body of the note, as Markdown.
    tags: Optional labels for grouping, e.g. ["work", "ideas"].
list_notesA

List saved notes, most recently updated first.

Returns titles and tags only, not note bodies. Call get_note to read one.

Args:
    tag: Optional tag to filter by.
search_notesA

Find notes by text and/or tags.

Returns matching notes with a short snippet, not their full bodies. Call
get_note to read one in full.

Args:
    query: Text to look for in note titles and bodies (case-insensitive).
    tags: Only return notes carrying these tags.
    match_all: If true, a note must have every listed tag; otherwise any one
        of them is enough.
get_noteA

Read one note in full, including its body.

Args:
    note_id: The note's id, as returned by list_notes or search_notes.
delete_noteA

Delete a note permanently.

Args:
    note_id: The note's id, as returned by list_notes or search_notes.

Prompts

Interactive templates invoked by user choice

NameDescription
summarize_notesSummarize saved notes, optionally limited to one tag. Args: tag: Only summarize notes with this tag. Leave empty for all notes.

Resources

Contextual data attached and managed by the client

NameDescription
all_notes_indexAn index of every saved note: id, title, and tags.
tag_indexEvery tag in use, with the number of notes carrying it.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/pdegner/notes-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server