{"id":29627575,"url":"https://github.com/gravitycloudai/matter-ai-mcp","last_synced_at":"2025-07-21T08:04:50.585Z","repository":{"id":301831488,"uuid":"1005995668","full_name":"GravityCloudAI/matter-ai-mcp","owner":"GravityCloudAI","description":"MatterAI MCP server to perform code reviews and more in IDE","archived":false,"fork":false,"pushed_at":"2025-07-10T06:11:01.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-10T14:59:11.891Z","etag":null,"topics":["codereview","matterai","mcp","mcp-server"],"latest_commit_sha":null,"homepage":"https://matterai.so","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GravityCloudAI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-21T08:53:56.000Z","updated_at":"2025-07-10T06:11:04.000Z","dependencies_parsed_at":"2025-06-29T05:28:39.902Z","dependency_job_id":null,"html_url":"https://github.com/GravityCloudAI/matter-ai-mcp","commit_stats":null,"previous_names":["gravitycloudai/matter-ai-mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/GravityCloudAI/matter-ai-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GravityCloudAI%2Fmatter-ai-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GravityCloudAI%2Fmatter-ai-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GravityCloudAI%2Fmatter-ai-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GravityCloudAI%2Fmatter-ai-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GravityCloudAI","download_url":"https://codeload.github.com/GravityCloudAI/matter-ai-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GravityCloudAI%2Fmatter-ai-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266263057,"owners_count":23901356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["codereview","matterai","mcp","mcp-server"],"created_at":"2025-07-21T08:04:49.908Z","updated_at":"2025-07-21T08:04:50.572Z","avatar_url":"https://github.com/GravityCloudAI.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://matterai.so\"\u003e\n    \u003cimg\n      src=\"https://matterai.so/favicon.png\"\n      alt=\"Matter AI Logo\"\n      height=\"64\"\n    /\u003e\n  \u003c/a\u003e\n  \u003cbr /\u003e\n  \u003cp\u003e\n    \u003ch3\u003e\n      \u003cb\u003e\n        Matter AI\n      \u003c/b\u003e\n    \u003c/h3\u003e\n  \u003c/p\u003e\n  \u003cp\u003e\n    \u003cb\u003e\n      Release Code with Confidence. Everytime.\n    \u003c/b\u003e\n  \u003c/p\u003e\n  \u003cp\u003e\n\n![Matter Og Image](https://res.cloudinary.com/dxvbskvxm/image/upload/v1751168720/ph-header_cy8iqj.png)\n\n  \u003c/p\u003e\n\u003c/div\u003e\n\n\n# Matter AI MCP Server\n\nMatterAI 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.\n\n## Features\n- **Code review tools** - Get comprehensive code reviews for individual files or full git diffs\n- **Implementation planning** - Generate detailed implementation plans for AI agents\n- **Pull request generation** - Create pull requests with auto-generated titles and descriptions\n- **Random cat facts** - Because who doesn't love cat facts?\n\n## Requirements\n- Python 3.11+\n- See `requirements.txt` for dependencies\n\n## Installation\n```bash\npip install -r requirements.txt\n```\n\n## Setup\n\n### API Key\nTo use Matter AI MCP Server, you need an API key:\n1. Obtain your API key from [https://app.matterai.dev/settings](https://app.matterai.dev/settings)\n2. Use this key in your MCP configuration as shown below\n\n### MCP Configuration\nCreate an MCP configuration file with the following content:\n\n```json\n{\n  \"mcpServers\": {\n    \"matter-ai\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\",\n        \"mcp-remote\",\n        \"https://mcp.matterai.so/sse\",\n        \"--header\",\n        \"X-AUTH-TOKEN:MATTER_AI_API_KEY\"\n      ]\n    }\n  }\n}\n```\n\nReplace `MATTER_AI_API_KEY` with your actual API key.\n\n## Usage\nRun the server:\n```bash\npython server.py\n```\nThe server will start on `http://localhost:9000` (default for FastMCP).\n\n### Connecting from Cursor or Windsurf\n- Use the MCP (Model Context Protocol) integration\n- Point to: `http://localhost:9000/sse`\n- Tools will auto-discover and appear in the client\n\n## Tools\n\n### 1. Code Review\n`codereview(generated_code: str, git_owner: str, git_repo: str, git_branch: str, git_user: str, languages: str) -\u003e str`\nProvides code review for the generated code.\n\n### 2. Full Code Review\n`codereview_full(git_diff: str, git_owner: str, git_repo: str, git_branch: str, git_user: str) -\u003e str`\nProvides a comprehensive code review based on git diff output.\n\n### 1. Cat Fact\n`cat_fact() -\u003e str`\nReturns a random cat fact.\n\n---\n\n## License\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravitycloudai%2Fmatter-ai-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgravitycloudai%2Fmatter-ai-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgravitycloudai%2Fmatter-ai-mcp/lists"}