MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
© 2026 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Matter AI MCP Server MCP
Matter AI MCP Server MCP Logo

Matter AI MCP Server MCP

Model Context Protocol Integration

Overview

MatterAI MCP server for Cursor, Windsurf, and other AI clients that enhances your development workflow. MatterAI provides AI Code Reviews within your IDE as well as Github.

# MatterAI

MatterAI MCP server for Cursor, Windsurf, and other AI clients that enhances your development workflow. MatterAI provides AI Code Reviews within your IDE as well as Github.

Includes features like:

  • Code review tools - Get comprehensive code reviews for individual files or full git diffs
  • Implementation planning - Generate detailed implementation plans for AI agents
  • Pull request generation - Create pull requests with auto-generated titles and descriptions

Installation Instructions


README: https://github.com/GravityCloudAI/matter-ai-mcp

Matter AI Logo

Matter AI

Release Code with Confidence. Everytime.

Matter Og Image

Matter AI MCP Server

MatterAI MCP offers code reviews right in your IDE when using AI Agents such as in Cursor, Windsurf, VS Code, Cline and more to enhances your development workflow. Built with FastMCP in Python, it provides advanced code review capabilities, implementation planning, and pull request generation to help you release code with confidence.

Features

  • Code review tools - Get comprehensive code reviews for individual files or full git diffs
  • Implementation planning - Generate detailed implementation plans for AI agents
  • Pull request generation - Create pull requests with auto-generated titles and descriptions
  • Random cat facts - Because who doesn't love cat facts?

Requirements

  • Python 3.11+
  • See requirements.txt for dependencies

Installation

pip install -r requirements.txt

Setup

API Key

To use Matter AI MCP Server, you need an API key:

  1. Obtain your API key from https://app.matterai.dev/settings
  2. Use this key in your MCP configuration as shown below

MCP Configuration

Create an MCP configuration file with the following content:

{
  "mcpServers": {
    "matter-ai": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.matterai.so/sse",
        "--header",
        "X-AUTH-TOKEN:MATTER_AI_API_KEY"
      ]
    }
  }
}

Replace MATTER_AI_API_KEY with your actual API key.

Usage

Run the server:

python server.py

The server will start on http://localhost:9000 (default for FastMCP).

Connecting from Cursor or Windsurf

  • Use the MCP (Model Context Protocol) integration
  • Point to: http://localhost:9000/sse
  • Tools will auto-discover and appear in the client

Tools

1. Code Review

codereview(generated_code: str, git_owner: str, git_repo: str, git_branch: str, git_user: str, languages: str) -> str Provides code review for the generated code.

2. Full Code Review

codereview_full(git_diff: str, git_owner: str, git_repo: str, git_branch: str, git_user: str) -> str Provides a comprehensive code review based on git diff output.

1. Cat Fact

cat_fact() -> str Returns a random cat fact.


License

MIT

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.