Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
WEB_MCP_USER_AGENTNoUser-Agent header for static fetchLocalLLM-WebMCP/0.1
WEB_MCP_SERVER_NAMENoMCP server nameweb-mcp
WEB_MCP_DEFAULT_RENDERNoDefault render modeauto
WEB_MCP_FETCH_TIMEOUT_MSNoTimeout for static fetch in milliseconds15000
WEB_MCP_DEFAULT_MAX_CHARSNoDefault maximum characters for web_fetch20000
WEB_MCP_BROWSER_TIMEOUT_MSNoTimeout for browser fetch in milliseconds20000
WEB_MCP_DEFAULT_MAX_RESULTSNoDefault number of results for web_search10

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
web_searchB

Search the web and return a list of candidate pages. This scaffold returns mock results only.

web_fetchC

Fetch a URL with static HTTP and return readable Markdown-style page text.

web_findC

Fetch a URL with static HTTP and find text within the extracted page text.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3/5.0

Scored across 3 tools

Disambiguation4/5

web_fetch and web_find both involve fetching a URL, but one returns the full page text and the other finds specific text within it, making their purposes distinct with clear descriptions. web_search is entirely different.

Naming Consistency5/5

All tools follow the consistent 'web_verb' pattern (fetch, find, search), indicating a predictable naming convention.

Tool Count5/5

Three tools is an appropriate number for a web utility server, covering core operations without being too sparse or excessive.

Completeness3/5

The tools cover basic web tasks (fetch, find text, search) but lack advanced features like POST requests, pagination, or element extraction, which are notable gaps for a comprehensive web server.