Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SEARXNG_URLNoSearxNG instance URLhttp://localhost:8080
FETCH_TIMEOUT_MSNoPage fetch timeout10000
PYTHON_SANDBOX_CPUNoDefault Python sandbox CPU limit1
SEARXNG_TIMEOUT_MSNoSearch request timeout10000
SEARXNG_MAX_RETRIESNoMax retries for failed requests3
SEARXNG_RETRY_DELAY_MSNoBase retry delay (exponential backoff)1000
FETCH_MAX_CONTENT_LENGTHNoMax content length for fetched pages50000
PYTHON_SANDBOX_MEMORY_MBNoDefault Python sandbox memory limit512
PYTHON_SANDBOX_TIMEOUT_MSNoDefault Python sandbox timeout60000

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_internetA

Search the internet using SearxNG meta-search engine. Returns search results with title, URL, snippet, source engine, and score. Supports speed, balanced, and quality modes. Deduplicates by URL and limits same-domain results to 2. Filters low-trust domains when website-weight-config.json is present.

fetch_pageA

Fetch and extract content from a web page using Playwright with stealth mode. Supports snippet, readable, and full extraction modes. Content is truncated to 50,000 characters.

execute_pythonA

Execute Python code in an isolated Docker sandbox with network disabled, capability dropping, and resource limits (512MB RAM, 1 CPU, 60s timeout). Auto-detects and installs missing packages.

get_search_suggestionsA

Get autocomplete suggestions for a partial search query from SearxNG. Returns up to max_suggestions suggestion strings. Falls back to simple query expansion when SearxNG autocomplete is unavailable.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: searching, fetching pages, getting suggestions, and running code. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (execute_python, fetch_page, get_search_suggestions, search_internet).

Tool Count5/5

Four tools is a well-scoped set for a web search server, covering core functionality without being too few or too many.

Completeness4/5

The set covers searching, suggestions, page fetching, and code execution. Minor gap: no direct image search or URL validation, but execute_python adds flexibility.

Maintenance

ActivityInactive
ResponsivenessNo issues