{
"mcpServers": {
"review-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 146 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Review Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
コード、ドキュメント、テストケースに対するAI駆動のレビュー機能を提供するModel Context Protocol (MCP) サーバー。包括的なプロンプトテンプレート管理機能を備えています。
git clone <repository-url>
cd review-mcp-server
go build -o review-mcp-server ./cmd/review-mcp-server
go install ./cmd/review-mcp-server
サーバーはREVIEW_MCP_プレフィックス付きの環境変数で設定できます:
REVIEW_MCP_TEMPLATE_DIR: プロンプトテンプレートのディレクトリ(デフォルト: ~/.review-mcp-server/prompts)REVIEW_MCP_LOG_LEVEL: ログレベル - debug、info、warn、またはerror(デフォルト: info)REVIEW_MCP_ENABLE_LOGGING: 詳細ログを有効化(デフォルト: false)REVIEW_MCP_LOG_FILE: ログファイルのパス(デフォルト: stderr)review-mcp-server stdio [flags]
Flags:
--template-dir string プロンプトテンプレートのディレクトリ
--log-level string ログレベル (debug, info, warn, error) (デフォルト "info")
--enable-logging 詳細ログを有効化
--log-file string ログファイルのパス
-h, --help stdioのヘルプ
サーバーをstdioモードで起動:
review-mcp-server stdio
MCP設定(.vscode/settings.jsonまたはユーザー設定)に追加:
{
"mcp.servers": {
"review-mcp-server": {
"command": "review-mcp-server",
"args": ["stdio"]
}
}
}
Claude Desktopの設定ファイルに追加:
{
"mcpServers": {
"review-mcp-server": {
"command": "review-mcp-server",
"args": ["stdio"]
}
}
}
review_codeコードの品質、バグ、セキュリティ問題、ベストプラクティスをレビューします。
パラメータ:
code (必須): レビューするコードの内容language (必須): プログラミング言語(例: go, python, javascript, typescript)file_path (オプション): レビュー対象のファイルパスfocus_areas (オプション): フォーカス領域のカンマ区切りリスト(例: security,performance,readability)template (オプション): 使用するプロンプトテンプレート名(デフォルト: code_review_default)review_documentationドキュメントの明確性、完全性、正確性、構造をレビューします。
パラメータ:
content (必須): レビューするドキュメントの内容format (オプション): ドキュメント形式 - markdownまたはplain_text(デフォルト: markdown)target_audience (オプション): 対象読者(例: beginners, developers, users)template (オプション): 使用するプロンプトテンプレート名(デフォルト: doc_review_default)review_testsテストコードのカバレッジ、品質、構造、完全性をレビューします。
パラメータ:
test_code (必須): レビューするテストコードtest_type (必須): テストの種類 - unit、integration、またはe2ecoverage_info (オプション): テストカバレッジ情報template (オプション): 使用するプロンプトテンプレート名(デフォルト: test_review_default)list_prompt_templates利用可能なすべてのプロンプトテンプレートを一覧表示します。
パラメータ:
type (オプション): テンプレートタイプでフィルタ(code_review、doc_review、test_review)get_prompt_template名前で特定のプロンプトテンプレートを取得します。
パラメータ:
name (必須): 取得するテンプレート名create_prompt_template新しいプロンプトテンプレートを作成します。
パラメータ:
name (必須): テンプレート名type (必須): テンプレートタイプ(code_review、doc_review、test_review)description (オプション): テンプレートの説明variables (オプション): テンプレート変数のカンマ区切りリストcontent (必須): テンプレート内容(Goテンプレート構文をサポート)update_prompt_template既存のプロンプトテンプレートを更新します。
パラメータ:
name (必須): 更新するテンプレート名new_name (オプション): テンプレートの新しい名前type (オプション): テンプレートタイプdescription (オプション): テンプレートの説明variables (オプション): テンプレート変数のカンマ区切りリストcontent (オプション): テンプレート内容delete_prompt_templateプロンプトテンプレートを削除します。
パラメータ:
name (必須): 削除するテンプレート名サーバーは優先順位順に複数のテンプレート保存場所をサポートします:
.review-prompts/またはprompts/ディレクトリ~/.review-mcp-server/prompts(または--template-dirでカスタムディレクトリ)サーバーは現在の作業ディレクトリから開始してルートまで遡り、プロジェクトテンプレートを自動的に検索します。プロジェクトテンプレートはグローバルテンプレートより優先されます。
サーバーには3つのデフォルトテンプレートが付属しています: