ReviewWebsite.Com MCP Server

TypeScript Model Context Protocol (MCP) server for ReviewWebsite. Includes CLI support and extensible structure for connecting AI systems (LLMs) to

Local serverstdioTypeScript

What is the ReviewWebsite.Com MCP server?

TypeScript Model Context Protocol (MCP) server for ReviewWebsite. Includes CLI support and extensible structure for connecting AI systems (LLMs) to ReviewWeb.site API. Exposed over MCP by the reviewwebsite.com mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

This project provides a Model Context Protocol (MCP) server that connects AI assistants to ReviewWebsite.com API to create and manage website reviews, extract data, convert URLs to markdown, and more.

Model Context Protocol (MCP) is an open standard that allows AI systems to securely and contextually connect with external tools and data sources.

  • Production-Ready Architecture — Follows the same pattern used in published MCP servers, with clear separation between CLI, tools, controllers, and services
  • Type Safety — Built with TypeScript for improved developer experience, code quality, and maintainability
  • Working Example — Includes a fully implemented IP lookup tool demonstrating the complete pattern from CLI to API integration
  • Testing Framework — Comes with testing infrastructure for both unit and CLI integration tests, including coverage reporting
  • Development Tooling — Includes ESLint, Prettier, TypeScript, and other quality tools preconfigured for MCP server development

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Its toolset

Everything the assistant can do here goes through one of these:

  • Purpose — Define MCP tools with schemas and descriptions for AI assistants
  • Naming — Files should be named .tool.ts with types in .types.ts
  • Pattern — Each tool should use zod for argument validation

Configuration

You will need 4 environment variables: DEBUG, REVIEWWEBSITE_API_KEY, MCP_HTTP_HOST, MCP_HTTP_PATH. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js (>=18.x): Download - Git: For version control ---

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the reviewwebsite.com mcp server does with a few real requests.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. ReviewWebsite.Com's toolset — Purpose, Naming, Pattern — is a fair guide to whether it matches your workflow. It is maintained by mrgoonie; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
PurposeDefine MCP tools with schemas and descriptions for AI assistants
NamingFiles should be named <feature>.tool.ts with types in <feature>.types.ts
PatternEach tool should use zod for argument validation

How to install the ReviewWebsite.Com MCP server

**For remote HTTP configuration:**
```json
{
  "mcpServers": {
    "reviewwebsite": {
      "type": "http",
      "url": "http://localhost:8080/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js (>=18.x): Download - Git: For version control ---
VariableDescriptionRequired
DEBUGConfiguration value read at startup.Optional
REVIEWWEBSITE_API_KEYCredential the server authenticates with.Yes
MCP_HTTP_HOSTEndpoint or connection string the server talks to.Optional
MCP_HTTP_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use ReviewWebsite.Com to Purpose.
  • Use ReviewWebsite.Com to Naming.
  • Use ReviewWebsite.Com to Pattern.

Frequently asked questions

Node.js >=18.x, an API key from ReviewWebsite.com (create at reviewweb.site/profile), and optionally HTTP environment variables for the HTTP transport.