### Task: build and MCP server
**What it does:** Analyzes local git repositories
**Required Tools:**
- `analyze_commits` - Get commit stats (last N commits, by author, by date range)
- `find_hot_spots` - Most frequently changed files
- `get_contributors` - List contributors with their stats
**Required Resources:**
- `git://recent-activity` - Last 10 commits as structured data
- `git://file-history/{filepath}` - Change history for a specific file
**Tech Stack:** Python + GitPython library
**Sample Output:**
json
`{
"hot_spots": [
{"file": "src/api/auth.js", "changes": 47, "authors": 5},
{"file": "src/utils/db.js", "changes": 32, "authors": 3}
]
}`