Skip to main content
Glama
roksana-commits

Ventless Fireplace Review MCP Server

Ventless Fireplace Review MCP Server

This project provides a read-only Model Context Protocol server for Ventless Fireplace Review. It reads the site’s public WordPress REST API and exposes published fireplace guides, pages, and editorial resources to MCP-compatible clients.

Capabilities

Capability

Purpose

site_overview

Return public site metadata and the server’s read-only scope.

search_content

Search public pages and posts by keyword.

list_content

List published pages or posts with dates and excerpts.

get_content

Retrieve one page or post by WordPress slug as Markdown.

ventless://homepage

Read the public homepage as a Markdown resource.

ventless://our-mission

Read the mission page as a Markdown resource.

ventless://about

Read the About page as a Markdown resource.

ventless://editorial-policy

Read the editorial policy as a Markdown resource.

The server intentionally exposes no WordPress write, authentication, publishing, editing, deletion, payment, or account-management operations.

Related MCP server: PowerSearch MCP

Requirements and setup

Use Node.js 20 or later. Install dependencies with:

pnpm install

Check connectivity to the live site:

npm run inspect

Start the stdio MCP server:

npm start

The default site is https://ventlessfireplacereview.com. To point the server at another WordPress site, set WP_BASE_URL before starting it. REQUEST_TIMEOUT_MS and USER_AGENT are also configurable.

Example MCP client configuration

For a local MCP client, use an absolute path to the project directory:

{
  "mcpServers": {
    "ventless-fireplace-review": {
      "command": "node",
      "args": ["/absolute/path/to/ventless-fireplace-mcp/server.mjs"],
      "env": {
        "WP_BASE_URL": "https://ventlessfireplacereview.com"
      }
    }
  }
}

Safety and provenance

All returned content is fetched from public website endpoints and includes source URLs where applicable. The server does not independently verify fireplace safety, installation requirements, building codes, product specifications, or current manufacturer instructions. MCP clients should treat the content as educational, verify consequential claims against current primary sources, and consult qualified professionals for installation, gas, combustion, electrical, code, and safety decisions.

Testing

Run the live health check and the end-to-end MCP protocol test:

npm run inspect
node test-client.mjs

Available Tools

4 tools
get_contentGet website contentA
Read-only

Retrieve one public published page or post by its WordPress slug, converted to readable Markdown.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesWordPress slug, for example editorial-policy
contentTypeNoExpected content type, or anyany

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark as read-only and open-world. The description adds the behavior of converting to Markdown and retrieving public/published content, which is transparent. No side effects mentioned, but none are expected given annotations.

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 sentence, concise, and front-loaded with the core purpose. No unnecessary words, well-structured.

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?

For a simple retrieval tool, the description covers the essential aspects: what it retrieves, by what identifier, and the output format (Markdown). It also notes restriction to public/published content, which is useful context. No output schema exists, but the description sufficiently explains the return.

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 schema descriptions for both parameters are complete (slug format and example, contentType enum with default). The description doesn't add extra meaning beyond what the schema already provides, so it's adequately covered but not enhanced.

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 a single page or post by WordPress slug and converts it to Markdown. It distinguishes from sibling tools like search_content and list_content by focusing on retrieval of a specific item.

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?

It implies when to use (when you have a specific slug and want content) and hints at alternatives via 'one' vs. list/search. However, it could explicitly state to prefer search_content for searching or list_content for listing, but it's mostly clear.

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

list_contentList website contentA
Read-only

List public published pages or posts with titles, URLs, dates, and excerpts.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoWordPress API page number
limitNoNumber of items to return
contentTypeNoContent type to listpost

TDQS

A3.9/5.0
Behavior4/5

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

The annotations already declare readOnlyHint=true and openWorldHint=true, covering safety and the open-ended nature of results. The description adds valuable context beyond this: it specifies the scope ('public published') and the exact output fields (titles, URLs, dates, excerpts). This clarifies what results will look like without contradicting the annotations.

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?

A single sentence of five words plus a list of fields is efficient and front-loaded with the verb and resource. There is no redundant phrasing or additional detail that detracts from clarity.

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?

For a simple list tool with three optional parameters and no output schema, the description combined with the annotations and full schema coverage provides everything an agent needs: the resource scope, the fields returned, and the safety profile. No critical information is missing for correct invocation.

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 100%, with each parameter (page, limit, contentType) having a clear description. The tool description adds nothing about parameters themselves; it only mentions the output fields. Per the rubric, with full schema coverage, a baseline score 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 uses a clear verb ('List') and a specific resource ('public published pages or posts') and enumerates the returned fields (titles, URLs, dates, excerpts). This distinguishes it from siblings like get_content (single item) or search_content (query-based) without ambiguity.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention scenarios where search_content or get_content would be more appropriate, nor any exclusions (e.g., private or draft content). The agent must infer usage from the tool name alone.

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

search_contentSearch website contentA
Read-only

Search public published pages and posts on Ventless Fireplace Review by keyword.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return
queryYesSearch phrase or fireplace topic
contentTypeNoWhether to search posts, pages, or bothany

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already carry readOnlyHint=true and openWorldHint=true, so the safe-read profile is established without description help. The description adds the 'public published' scope, which usefully signals that drafts and unpublished content are out of reach, and it does not contradict the annotations. It stops short of describing result shape or edge behavior, keeping this at a solid rather than rich disclosure.

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?

A single 12-word sentence front-loads the verb and scope and contains no filler. The title and description align, and every word earns its place — this is concise without degrading into an under-specified tautology.

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 read-only search tool with a fully documented schema and informative annotations, the description covers the essentials of what is searched and how. It falls short on two fronts: no output schema exists and the description never hints at the result format, and no sibling routing is provided to help an agent choose among the four related tools.

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 100%: query, limit, and contentType each have descriptions, defaults, and constraints in the schema itself. The description only loosely maps to the parameters (keyword → query, pages and posts → contentType) without adding new semantic detail, so the baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb (search), a resource (public published pages and posts on Ventless Fireplace Review), and the mechanism (by keyword), so an agent can tell exactly what the tool does. Sibling differentiation is only implicit rather than explicit: the keyword-scoped search is distinguishable from list_content/get_content, but no sibling is named or contrasted.

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 the usage context — finding published content on the site by keyword — but offers no explicit when-to-use guidance. It does not name alternatives such as list_content (browsing without a keyword) or site_overview, nor does it state any exclusion conditions.

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

site_overviewSite overviewA
Read-only

Return public metadata for Ventless Fireplace Review and explain the read-only scope of this server.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior4/5

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

The description aligns with the readOnlyHint annotation by stating it explains the read-only scope, which is transparent about its side-effect-free behavior. However, it does not describe other behavioral aspects such as error handling or return format, but the annotation already covers the read-only nature.

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 sentence that conveys the two main functions: returning metadata and explaining the read-only scope. It is concise and well-structured without unnecessary details.

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?

The description provides sufficient context for a no-parameter tool by stating its purpose and the fact that it explains the read-only scope. It is complete enough for an agent to understand what the tool does, though it does not specify the exact format of the metadata, which is not critical.

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 tool has no parameters, so the schema coverage is 100%. The description does not add any parameter-specific information because none exist, resulting in the baseline score of 3.

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 that the tool returns public metadata for 'Ventless Fireplace Review' and additionally explains the read-only scope of the server. This is a specific action that distinguishes it from sibling tools that search, list, or get content.

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

Usage Guidelines2/5

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

The description does not provide any explicit guidance on when to use this tool versus the sibling tools (search_content, list_content, get_content). It does not mention alternatives or conditions for using this tool, leaving the agent to infer its applicability from the purpose alone.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv1.0.0
    • First observedget_content
    • First observedlist_content
    • First observedsearch_content
    • First observedsite_overview

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a distinct purpose: overview for metadata, search for keyword lookup, list for enumeration, and get for retrieving a specific post. No functional overlap.

Naming Consistency5/5

All tool names use snake_case and follow a verb-noun pattern (search_content, list_content, get_content), with site_overview being a minor exception but still clear and consistent in style.

Tool Count5/5

The server is intentionally read-only for a single blog, and four tools cover the essential content retrieval operations without redundancy or excess.

Completeness5/5

The tool set fully covers the read-only domain: discovering metadata, searching, listing, and fetching individual content. No write operations are needed given the stated read-only scope.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers