Skip to main content
Glama

Server Details

Search indexed websites, read raw page markdown, and score AI visibility for any site.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

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 DescriptionsA

Average 3.9/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: listing sites, getting site metadata, listing pages, getting page content, and semantic search. No overlap in purpose.

Naming Consistency5/5

All tools use the 'sitedex_' prefix with snake_case and verb_noun pattern (get_page, get_site, list_pages, list_sites, search). The pattern is consistent and predictable.

Tool Count5/5

Five tools are well-suited for the domain of exploring an indexed website corpus, covering discovery, search, and retrieval without excess or insufficiency.

Completeness5/5

The tool set provides complete read-only coverage: listing all sites, inspecting a site, browsing its pages, fetching page content, and searching across sites. No obvious gaps for the intended use case.

Available Tools

5 tools
sitedex_get_pageAInspect

Get the full markdown of a specific page from an indexed website. Use this to zoom in after search points you at a URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesPage path starting with /, e.g. '/pricing' or '/docs/api'
siteYesDomain ('posthog.com') or slug
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states it gets markdown, but does not indicate whether it is read-only, requires authentication, has rate limits, or what the return format entails. This lack of behavioral context is a notable gap.

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 with no extraneous information. It is front-loaded with the purpose and provides usage context succinctly.

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?

For a simple tool with only two parameters and no output schema, the description is adequate but could be improved by mentioning that the output is markdown text and possibly noting any limitations (e.g., only works for indexed pages). It lacks return value details.

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?

The input schema already provides descriptions for both parameters ('path' and 'site') with examples, achieving 100% coverage. The description does not add additional meaning beyond the schema's detail; the baseline of 3 is appropriate.

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 the tool retrieves the full markdown of a specific page ('Get the full markdown of a specific page from an indexed website'), which is a specific verb+resource pair. It distinguishes from its sibling 'sitedex_search' by noting it is used after a search to zoom in.

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

Usage Guidelines4/5

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

The description explicitly says 'Use this to zoom in after `search` points you at a URL', providing clear context for when to use the tool relative to a known sibling. It does not mention when not to use it or compare with other siblings like list_pages or get_site, but the guidance is sufficient.

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

sitedex_get_siteAInspect

Get metadata and the AI Visibility Score for a single indexed site — name, description, category, subcategories, page counts, and which evaluation questions the site answers vs misses.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteYesDomain ('posthog.com') or slug ('posthog-com')
Behavior3/5

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

No annotations are provided, so the description must cover behavioral aspects. It indicates the tool is read-only by returning metadata, but does not mention authentication needs, rate limits, or error behavior (e.g., what happens if the site is not found). Adequate for a simple GET but lacks extra transparency.

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 a single, front-loaded sentence that efficiently conveys the tool's purpose and output. No unnecessary words or repetition.

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

Completeness4/5

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

Given the tool's simplicity (one parameter, no output schema, no annotations), the description sufficiently explains the return data (metadata and score with specifics). It lacks error or access details, but for its straightforward nature, it is reasonably complete.

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?

The input schema provides 100% coverage for the single parameter 'site'. The description adds no additional semantic meaning beyond what the schema already states. Baseline 3 is appropriate.

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 it retrieves metadata and an AI Visibility Score for a single indexed site, listing specific fields like name, description, category, etc. It effectively distinguishes from sibling tools like sitedex_get_page and sitedex_list_sites by focusing on a single site's details.

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 implies use for a single site but does not explicitly state when to use this tool over siblings like sitedex_search or sitedex_list_sites. No guidance on prerequisites or when not to use.

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

sitedex_list_pagesAInspect

List indexed pages on a site. Returns path, URL, and title so an agent can browse the site structure before searching or fetching.

ParametersJSON Schema
NameRequiredDescriptionDefault
siteYesDomain or slug to list pages for
limitNo
Behavior3/5

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

No annotations are provided, so the description must carry the full burden. It declares the operation is listing and returns specific fields, which implies a read-only behavior, but does not disclose pagination, rate limits, auth requirements, or potential side effects. Adequate for a simple list operation but could be more transparent.

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 a single, front-loaded sentence that efficiently conveys purpose and return format. Every word is necessary; no redundancy or fluff.

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

Completeness4/5

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

Given no output schema, the description covers return fields (path, URL, title) and usage context. It mentions the purpose (browsing structure). It could explicitly mention pagination behavior hinted by the limit parameter, but overall it is adequately complete for a moderate-complexity tool.

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 50% (site parameter described, limit not). The description adds return field details not in schema but does not explain parameter semantics beyond the schema. For instance, it does not clarify the limit parameter's default or behavior. With moderate coverage, the description adds minimal extra value.

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 the verb 'List', the resource 'indexed pages on a site', and specifies return fields (path, URL, title). It distinguishes from sibling tools by indicating this is for browsing structure before searching or fetching.

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 provides context ('before searching or fetching') but does not explicitly state when to use versus alternatives like sitedex_search or sitedex_get_page. It implies use for browsing but lacks careful exclusions or prerequisites.

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

sitedex_list_sitesAInspect

List every website indexed by Sitedex. Returns slug, domain, category, subcategories, AI Visibility Score, and page count for each site. Use this to discover what is available before searching.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax sites to return (default 200, max 500)
Behavior4/5

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

With no annotations, the description handles the burden well by stating it is a read-only list operation and specifying return fields. It does not mention pagination or ordering, but these are implied by the limit parameter. No contradictions.

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?

Two sentences only: first covers purpose and output, second gives usage advice. No wasted words, front-loaded with key information.

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?

No output schema, but description lists all returned fields with enough detail. Tool is simple (one optional parameter), and description fully compensates for lack of output schema.

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% (limit parameter fully described), so the description adds no extra parameter details beyond what the schema provides. Baseline of 3 is appropriate.

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?

Description clearly states it lists every website indexed by Sitedex and specifies the exact return fields. It distinguishes from sibling tools like sitedex_get_site (single site) and sitedex_search (search) by focusing on broad discovery.

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

Usage Guidelines4/5

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

Explicitly advises to use this tool to 'discover what is available before searching,' providing context for when to use it. However, it does not explicitly state when not to use it or mention alternatives such as sitedex_get_site for specific sites.

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.

Resources