๐Ÿค– AI Code Review MCP Server

Created By
wn01011a year ago
pr ๋ถ„์„์„ ์ข€ ๋” ํŽธํ•˜๊ฒŒ ํ•˜๊ณ ์ž ๋ฏธ๋ฆฌ ์ž‘์„ฑํ•ด์ฃผ๋Š” mcp ์„œ๋ฒ„์ž…๋‹ˆ๋‹ค.
Overview

what is AI Code Review MCP Server?

AI Code Review MCP Server is an AI-based server designed for code review and quality management using the Model Context Protocol (MCP).

how to use AI Code Review MCP Server?

To use the server, clone the repository, install dependencies, set up environment variables, and start the server. Access the web UI at http://localhost:3001 to analyze pull requests (PRs).

key features of AI Code Review MCP Server?

  • AI Code Review: Custom reviews based on commit types (feat, fix, refactor).
  • Quality Score Calculation: Evaluation based on complexity, maintainability, and security.
  • Security Vulnerability Detection: Automatic detection of potential security issues.
  • Performance Impact Analysis: Assessment of performance implications.
  • Integrated Review System: Comprehensive review checks and markdown report generation.

use cases of AI Code Review MCP Server?

  1. Analyzing pull requests for code quality.
  2. Generating review guides based on commit types.
  3. Providing best practices and common issues for developers.

FAQ from AI Code Review MCP Server?

  • Can the server analyze all types of commits?

Yes! It supports various commit types including features, fixes, and refactors.

  • Is the server free to use?

Yes! The server is open-source and free to use.

  • How can I customize the review templates?

You can modify the templates in the src/handlers/claude-client.ts file.

Project Info
Created At
a year ago
Updated At
a year ago
Author Name
wn01011
Star
0
Language
TypeScript
License
-

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship โ€” LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture โ€” retries, prompt caching, batch discounts, infra overhead, and 3ร—/10ร— growth โ€” across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** โ€” demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3ร—/10ร— growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing โ€” input, output, cached input, batch โ€” with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** โ€‹```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp โ€‹``` **Cursor / other clients** โ€” add a remote server: โ€‹```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } โ€‹``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago