Skip to main content
Glama
llm-graph

FastPostgresMCP

by llm-graph

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
LOG_LEVELNoServer logging level: debug, info, warn, errorinfo
DB_ALIASESYesComma-separated list of unique DB aliasesmain,reporting
ENABLE_AUTHNoEnable API Key auth (primarily for network transports)false
MCP_API_KEYNoAPI key for authentication when ENABLE_AUTH is true
DEFAULT_DB_ALIASYesDefault alias if 'dbAlias' is omitted in tool callsmain

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

NameDescription
query_toolC

Safely execute a read-only SQL query and retrieve results

execute_toolC

Safely execute a data-modifying SQL statement

schema_toolC

Retrieve detailed schema information for a specific table

transaction_toolB

Execute multiple SQL statements as a single atomic transaction

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a well-defined and distinct purpose: execute_tool for data modification, query_tool for read-only queries, schema_tool for table metadata, and transaction_tool for atomic operations. There is no ambiguity or overlap.

Naming Consistency5/5

All tool names follow a consistent verb_tool pattern using snake_case (execute_tool, query_tool, schema_tool, transaction_tool). The naming is predictable and clear.

Tool Count4/5

With four tools, the set is minimal but covers essential database operations (read, write, schema, transactions). While missing some auxiliary functions like listing tables, the count is appropriate for a focused server.

Completeness4/5

The tools cover the main CRUD lifecycle (via query and execute) and add schema retrieval and transactions. Minor gaps exist, such as lacking a tool to list all tables, but the core workflows are supported.

Maintenance

ActivityInactive
ResponsivenessNo issues