Skip to main content
Glama

Server Details

Comprehensive PostgreSQL documentation and best practices, including ecosystem tools

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
timescale/pg-aiguide
GitHub Stars
1,768
Server Listing
pg-aiguide

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.5/5 across 2 of 2 tools scored. Lowest: 2.9/5.

Server CoherenceA
Disambiguation5/5

The two tools have clearly distinct purposes: search_docs is for searching documentation, while view_skill is for retrieving detailed skill information. There is no overlap in functionality, and an agent would easily differentiate between them based on their descriptions.

Naming Consistency5/5

Both tools follow a consistent verb_noun naming pattern (search_docs and view_skill). The naming is clear, predictable, and uses the same convention throughout, making it easy for agents to understand the action and target of each tool.

Tool Count2/5

With only two tools, the server feels under-scoped for a PostgreSQL/TimescaleDB guidance domain. The available skills list suggests a rich set of topics (e.g., table design, hypertables, vector search), but the tool surface is too thin to cover these adequately, limiting agent capabilities.

Completeness2/5

The tool set is severely incomplete for the inferred domain of PostgreSQL/TimescaleDB guidance. While search_docs and view_skill provide access to documentation and skills, there are obvious gaps: no tools for executing operations (e.g., designing tables, setting up hypertables, migrating data) or interactive guidance, which are core to the domain as suggested by the skills list.

Available Tools

2 tools
search_docsSearch DocumentationA
Read-onlyIdempotent
Inspect

Search documentation with hybrid semantic (vector) and keyword (BM25) search. Use semanticWeight to choose keyword-only (0), semantic-only (1), or a blend; mid values fuse rankings with RRF. Supports Tiger Cloud (TimescaleDB), PostgreSQL, and PostGIS.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitYesThe maximum number of matches to return. Defaults to 20.
queryYesThe search query. Used for BM25 when keyword or hybrid search applies, and for the embedding when semantic or hybrid search applies.
sourceYesThe documentation source to search. "tiger" for Tiger Cloud and TimescaleDB, "postgres" for PostgreSQL, "postgis" for PostGIS spatial extension. Specific versions provided with _X.X suffixes.
semanticWeightYesControls the balance between semantic and keyword search. 0 = keyword only, 0.5 = equal mix, 1 = semantic only. Default is 0.7 (favor semantic search).

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description explains the hybrid search mechanism (semantic and BM25), the effect of semanticWeight, and the supported sources (Tiger Cloud, PostgreSQL, PostGIS). Annotations already indicate readOnly and idempotent, so the description adds algorithm details without contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loading the purpose and then detailing the key parameter and supported sources. Every sentence adds value without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity, the input schema fully documents all parameters, an output schema exists, and the description covers the search algorithm and supported sources. No additional context is needed for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds extra context for the semanticWeight parameter ('mid values fuse rankings with RRF') but does not add meaning for other parameters beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool performs a hybrid semantic and keyword search on documentation, distinguishing it from the sibling tool 'view_skill' which likely views a specific skill. The verb 'search' and resource 'documentation' are specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description does not provide explicit guidance on when to use this tool versus alternatives, beyond implying it is for searching documentation. It lacks when-not or when-to-use conditions, but the sibling tool context provides some implicit differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

view_skillView SkillC
Read-onlyIdempotent
Inspect

Retrieve detailed skills for TimescaleDB operations and best practices.

Available Skills

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesA relative path to a file or directory within the skill to view. If empty, will view the `SKILL.md` file by default. Use `.` to list the root directory of the skill.
skill_nameYesThe name of the skill to browse, or `.` to list all available skills.

Output Schema

ParametersJSON Schema
NameRequiredDescription
contentYesThe content of the file or directory listing.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, indicating this is a safe, non-destructive read operation. The description adds value by listing available skills, which provides context on what can be retrieved, but it doesn't disclose additional behavioral traits like rate limits, authentication needs, or error handling. No contradiction with annotations exists.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is overly long and poorly structured. The first sentence is concise, but it's followed by a lengthy, unformatted list of available skills that belongs elsewhere (e.g., in output schema or separate documentation). This adds noise without enhancing tool understanding, making it inefficient and not front-loaded with essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (2 parameters, annotations, and an output schema), the description is partially complete. It explains what skills are available but lacks context on how to use the tool effectively. The output schema existence means return values needn't be described, but the description fails to provide adequate usage context or integration with sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema fully documents both parameters (skill_name and path). The description does not add any parameter-specific semantics beyond what the schema provides, such as examples or clarifications on skill_name values. Baseline score of 3 is appropriate given high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Retrieve detailed skills for TimescaleDB operations and best practices.' It specifies the verb 'retrieve' and the resource 'skills,' but it doesn't explicitly differentiate from its sibling tool 'search_docs' (which likely searches documentation rather than retrieving skill details). The purpose is clear but lacks sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It lists available skills in detail, but this is more of a catalog than usage instructions. There is no mention of when to use 'view_skill' over 'search_docs' or other potential tools, nor any context about prerequisites or typical scenarios for invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.