Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
RAG_MODELNoModel name for Claude (default: claude-opus-4-8)
RAG_TOP_KNoNumber of top chunks to retrieve (default: 5)
DATABASE_URLYesPostgreSQL connection string with pgvector
VOYAGE_API_KEYYesVoyage API key for embeddings
RAG_EMBED_MODELNoEmbedding model name (default: voyage-3.5)
ANTHROPIC_API_KEYYesAnthropic API key for Claude
FIRECRAWL_API_KEYNoOptional Firecrawl API key for web research
RAG_MAX_REVISIONSNoMaximum number of revision cycles (default: 3)

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": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
ingestA

Add a web page to the knowledge base: scrape the URL, chunk and embed its text, and store it so future ask/search calls can use it. Use this to teach the system new source material before querying it.

askA

Answer a QUESTION with a written, source-cited answer (the full multi-agent RAG pipeline: plan → retrieve → synthesize → self-critique). Use this when the user wants an ANSWER. For raw matching documents instead of a written answer, use search.

searchA

Retrieve the raw top-k source chunks matching a QUERY, with similarity scores and no synthesized answer. Use this when you want the underlying documents themselves. To get a written, cited answer instead, use ask.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.6/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a distinct purpose: 'ask' provides synthesized answers, 'search' returns raw chunks, and 'ingest' adds content. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names are single-word verbs in lowercase, following a consistent and predictable pattern. No mixing of conventions.

Tool Count5/5

Three tools is ideal for this RAG server: one for ingestion, one for answering, and one for raw retrieval. The scope is well-defined without unnecessary tools.

Completeness4/5

The tool set covers the core RAG workflow (ingest, ask, search). A potential minor gap is the lack of a delete or update tool, but for the stated purpose it is highly complete.

Maintenance

ActivityStale
ResponsivenessNo issues