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.
- 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?
- Python 3.11+
- See
requirements.txt
for dependencies
pip install -r requirements.txt
To use Matter AI MCP Server, you need an API key:
- Obtain your API key from https://app.matterai.dev/settings
- Use this key in your MCP configuration as shown below
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.
Run the server:
python server.py
The server will start on http://localhost:9000
(default for FastMCP).
- Use the MCP (Model Context Protocol) integration
- Point to:
http://localhost:9000/sse
- Tools will auto-discover and appear in the client
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.
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.
cat_fact() -> str
Returns a random cat fact.
docker build -t matter-ai-mcp .
docker run -p 9000:9000 -e MATTER_API_ENDPOINT=https://api.matterai.so
The server will be accessible at http://localhost:9000
.
MIT
- Website: https://matterai.so
- Docs: https://docs.matterai.so