Review Analyzer MCP Server

The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name

Local serverstdio

What is the Review Analyzer MCP server?

If you want an AI assistant working directly with Review Analyzer, the review analyzer mcp server is the bridge. The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype.

What Review Analyzer does

The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype

Tools it exposes

Once connected, the assistant can call these 5 tools directly:

  • add-note — Adds a new note to the server
  • Resources — The server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name
  • Prompts — The server provides a single prompt: - summarize-notes: Creates summaries of all stored notes - Optional "style" argument to control detail level
  • Tools — The server implements one tool: - add-note: Adds a new note to the server - Takes "name" and "content" as required string arguments - Updates server state and
  • Debugging — Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP

Installing the review analyzer mcp server

The server is distributed via npm as @modelcontextprotocol/inspector, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply one environment variable: UV_PUBLISH_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Review Analyzer sits in that group, and the shape of its toolset — add-note, Resources, Prompts among others — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by Azhar-obenan.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the review analyzer mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
add-noteAdds a new note to the server
ResourcesThe server implements a simple note storage system with: - Custom note:// URI scheme for accessing individual notes - Each note resource has a name, description and text/plain mimetype
PromptsThe server provides a single prompt: - summarize-notes: Creates summaries of all stored notes - Optional "style" argument to control detail level (brief/detailed) - Generates prompt combining all current notes with style
ToolsThe server implements one tool: - add-note: Adds a new note to the server - Takes "name" and "content" as required string arguments - Updates server state and notifies clients of resource changes
DebuggingSince MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).

How to install the Review Analyzer MCP server

"mcpServers": {
    "obenan-mcp-server": {
      "command": "uv",
      "args": [
        "--directory",
        "/Users/AhmedUmerAnees/code/obenan-mcp-server",
        "run",
        "obenan-mcp-server"
      ]
    }
  }

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

Configuration

VariableDescriptionRequired
UV_PUBLISH_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Review Analyzer to add-note.
  • Use Review Analyzer to Resources.
  • Use Review Analyzer to Prompts.

Frequently asked questions

It connects Review Analyzer to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (add-note, Resources, Prompts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Review Analyzer directly.