Labsco
MCP SERVER

Matter AI

by GravityCloudAI

Get a code review inside the editor — on a single file's generated code or on a whole git diff — before the change ever reaches a pull request.

Git Hosting & Code Review
Summary
Review before the pull request, which is where feedback is cheapest.

The two review tools split along a real line: one looks at code the agent just wrote, the other at everything that changed. The second is the one that catches problems in the seams — an interaction between two files each of which looked fine alone. Because it runs in the editor, the feedback arrives while the change is still soft, before a reviewer's time is involved. Both tools want repository context passed in, so the call is more than the code itself.

What it is

An MCP server that brings Matter AI's code review into the editor, so an AI agent writing code can have that code reviewed in the same session. It runs over a hosted endpoint or locally, and covers review of freshly generated code as well as review of a complete diff.

What you get
  • A review of code just generated, given the code plus repository owner, name, branch, user and languages — `codereview`
  • A comprehensive review over full `git diff` output, with the same repository context — `codereview_full`
  • A random cat fact, which is exactly what it sounds like — `cat_fact`
  • Tools that auto-discover in Cursor, Windsurf, VS Code and Cline once the server is connected
Requirements

A Matter AI API key from the settings page of your account. The straightforward path is remote: bridge with `mcp-remote` to the hosted SSE endpoint, passing the key as an `X-AUTH-TOKEN` header. To run it yourself, Python 3.11+ and `pip install -r requirements.txt`, then `python server.py` — the server comes up on `http://localhost:9000` with the SSE endpoint at `/sse`. A Dockerfile is included, exposing the same port. The pyproject name is `matter-ai-mcp` (0.1.7), MIT licensed.

Setup effort

One command plus a key — npx -y mcp-remote https://mcp.matterai.so/sse --header X-AUTH-TOKEN:MATTER_AI_API_KEY, then supply credentials