Skip to main content
Glama
devaloi

mcpserve-py

by devaloi

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCPSERVE_DB_PATHNoPath to SQLite databasedata/mcpserve.db
MCPSERVE_DATA_DIRNoDirectory for documents and datadata
MCPSERVE_LOG_LEVELNoLog level (DEBUG, INFO, WARNING, ERROR)INFO

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
}
resources
{
  "subscribe": false,
  "listChanged": false
}

Tools

Functions exposed to the LLM to take actions

NameDescription
query_databaseA

Execute a read-only SQL query against the SQLite database. Only SELECT statements are allowed.

list_tablesB

List all tables in the SQLite database.

describe_tableB

Get the schema of a specific table including column names, types, and constraints.

create_documentB

Create a new markdown document with optional tags.

read_documentC

Read a document by its title.

list_documentsB

List all documents, optionally filtered by tag.

search_documentsC

Search documents by content and title.

get_datetimeA

Get the current date and time, optionally in a specific timezone.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
Database SchemaFull database schema (all CREATE TABLE statements)

TDQS

A3.5/5.0

Scored across 8 tools

Disambiguation4/5

Most tools target clearly distinct resources and actions, so an agent can pick correctly with little hesitation. The only mild overlap is between list_documents (tag filter) and search_documents (content/title query), which descriptions do disentangle.

Naming Consistency5/5

Every tool follows a clean verb_noun snake_case pattern: query_database, list_tables, describe_table, create_document, read_document, list_documents, search_documents, get_datetime. No deviations or mixed conventions.

Tool Count5/5

Eight tools is well-scoped for a lightweight multi-purpose server covering database introspection, document management, and a datetime utility. Each tool earns its place with no redundancy.

Completeness3/5

Document handling lacks update and delete operations, and the database surface is read-only with no insert/update/delete, so lifecycle coverage is partial. The lone get_datetime tool also sits outside either domain, leaving a somewhat heterogeneous surface.