Skip to main content
MatterAI MCP Server is currently in beta and subject to change.

Overview

MatterAI MCP Server revolutionizes code reviews by bringing AI-powered analysis directly into your development workflow. By leveraging the Model Context Protocol (MCP), it provides seamless integration with modern IDEs to enhance code quality and developer productivity.
MatterAI MCP Server

Key Features

🔍 Comprehensive Code Reviews

  • Review individual files or full git diffs with a single command
  • Identify potential bugs, security vulnerabilities, and performance issues
  • Get suggestions for code improvements and best practices

🧠 Implementation Planning

  • Generate detailed implementation plans for AI agents
  • Break down complex features into manageable tasks
  • Align implementation with architectural best practices

🚀 Pull Request Generation

  • Create pull requests with auto-generated titles and descriptions
  • Highlight key changes and their impact
  • Save time on PR documentation
MatterAI MCP Server

Getting Started

1. Create your MatterAI Account

Visit MatterAI to create your account.

2. IDE Setup

For Cursor IDE:

1-click Installation

  1. Click on “Add to Cursor” button in the Get Started section
MatterAI MCP Server

Self-hosted Installation

  1. Click on Cursor Settings -> Tools & MCP -> Add Custom MCP -> mcp.json file
  2. Add the below JSON file
mcp.json
{
  "mcpServers": {
    "matterai": {
      "url": "https://mcp.matterai.so/sse",
      "disabled": false,
      "headers": {
        "X-AUTH-TOKEN": "YOUR_MATTER_AI_API_KEY"
      },
      "autoApprove": []
    }
  }
}

For Cline IDE:

  1. Click on Cline -> MCP Servers -> Remove Servers -> Edit configuration button
  2. Add the below JSON file
cline_mcp_settings.json
{
  "mcpServers": {
    "matterai": {
      "url": "https://mcp.matterai.so/sse",
      "disabled": false,
      "headers": {
        "X-AUTH-TOKEN": "YOUR_MATTER_AI_API_KEY"
      },
      "autoApprove": []
    }
  }
}
MatterAI MCP Server Setup for Cline
  1. On save, it will load all the available tools
  2. Request Cline to perform code review using matterai by saying perform code review with matterai
MatterAI MCP Server Preview for Cline

For Any MCP-Compatible IDE:

  1. Obtain your MatterAI API key from MatterAI Settings
  2. Configure your MCP configuration file with the following settings:
{
  "mcpServers": {
    "matter-ai": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.matterai.so/sse",
        "--header",
        "X-AUTH-TOKEN:YOUR_MATTER_AI_API_KEY"
      ]
    }
  }
}

3. Start Using in AI Agent Chats

Use simple commands such as /matter review OR natural language to perform code reviews with solution and implementation in your IDE.
MatterAI MCP Server Preview for Cursor

Why Choose MatterAI MCP Server?

  • Seamless Integration: Works directly in your existing development environment
  • Context-Aware: Understands your codebase and provides relevant suggestions
  • Time-Saving: Automates routine code review tasks
  • Consistent Quality: Provides consistent, objective code reviews every time
“Our team is hooked to this amazing AI-driven code review agent. This is something I would have loved to build myself, if MatterAI hadn’t done it already.” — CTO, Rumi

Learn More

For more information and updates, visit MatterAI.
I