Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
KB_DB_PATHNoPath to the SQLite database file. Defaults to ./data/kb.sqlite3../data/kb.sqlite3
KB_HTTP_HOSTNoHost for the HTTP server. Defaults to 127.0.0.1.127.0.0.1
KB_HTTP_PORTNoPort for the HTTP server. Defaults to 8000.8000
KB_TRANSPORTNoTransport to use. Set to 'http' for Streamable HTTP transport. Defaults to stdio.
KB_AUTH_TOKENNoBearer token for authenticating HTTP transport. Required when KB_TRANSPORT is 'http'.

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
create_noteC

Create a new note with a title and body, and return the saved note.

get_noteB

Retrieve a single note by its id.

update_noteC

Replace an existing note's title and body.

delete_noteC

Delete a note by its id.

search_notesA

Full-text search over note titles and bodies, ranked by relevance. Supports FTS5 syntax: quote a phrase for an exact match, combine terms with AND/OR/NOT, or prefix-match with an asterisk (e.g. kaf*).

Prompts

Interactive templates invoked by user choice

NameDescription
summarize_noteSummarize a note's content in a few sentences.
draft_replyDraft a reply to a note in a given tone.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct action on a single note resource: create, retrieve, update, delete, and search. There is no overlap or ambiguity; an agent can easily select the correct tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: create_note, get_note, update_note, delete_note, search_notes. The convention is predictable and readable.

Tool Count5/5

With 5 tools, the set is well-scoped for a note management server. It covers essential operations without bloat, and each tool earns its place.

Completeness4/5

The server provides full CRUD plus full-text search, covering the core lifecycle. However, it lacks an explicit 'list all notes' operation, which could be a minor gap for some workflows.

Maintenance

ActivityMaintained
ResponsivenessNo issues