https://github.com/gravitycloudai/matter-ai-mcp
MatterAI MCP server to perform code reviews and more in IDE
https://github.com/gravitycloudai/matter-ai-mcp
codereview matterai mcp mcp-server
Last synced: 11 months ago
JSON representation
MatterAI MCP server to perform code reviews and more in IDE
- Host: GitHub
- URL: https://github.com/gravitycloudai/matter-ai-mcp
- Owner: GravityCloudAI
- Created: 2025-06-21T08:53:56.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T06:11:01.000Z (11 months ago)
- Last Synced: 2025-07-10T14:59:11.891Z (11 months ago)
- Topics: codereview, matterai, mcp, mcp-server
- Language: Python
- Homepage: https://matterai.so
- Size: 42 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
Matter AI
Release Code with Confidence. Everytime.

# 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](https://github.com/modelcontextprotocol/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
```bash
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](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:
```json
{
"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:
```bash
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