Skip to main content
Glama
ziiyue-eee
by ziiyue-eee

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
REPOPILOT_LLM_MODELNoModel name for the LLMqwen2.5-coder:7b
REPOPILOT_LLM_API_KEYNoAPI key for the LLMollama
REPOPILOT_LLM_BASE_URLNoBase URL for the OpenAI-compatible LLM APIhttp://127.0.0.1:11434/v1

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
repository_mapB

Return files and symbols from an indexed repository.

search_symbolC

Search symbols with lexical and code-structure ranking.

read_fileC

Read a bounded line range from a repository file.

find_referencesC

Find indexed call sites for a symbol.

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 targets a distinct operation: repository_map provides an overview of files and symbols, search_symbol finds specific symbols, read_file reads file content, and find_references tracks symbol usage. There is no ambiguity or overlap among them.

Naming Consistency4/5

Three tools follow a consistent verb_noun pattern (search_symbol, read_file, find_references), but repository_map deviates slightly as noun_noun. However, all names use snake_case and are clear.

Tool Count5/5

With only 4 tools, the server is well-scoped for code navigation tasks. Each tool serves a necessary function without redundancy or bloat.

Completeness4/5

The tool set covers core code understanding: overview (repository_map), search (search_symbol), reading (read_file), and reference tracking (find_references). A minor gap is lack of directory listing, but repository_map likely provides it.

Maintenance

ActivitySlowing
ResponsivenessNo issues