Agent Ready
MCP Integration
Connect GitLog AI to Claude Desktop or any MCP-compliant agent.
Overview
GitLog AI implements the Model Context Protocol (MCP), allowing AI agents to directly query your repository history and generate changelogs on command.
Claude Desktop Configuration
Add this to your claude_desktop_config.json:
json
{
"mcpServers": {
"gitlog": {
"command": "npx",
"args": ["-y", "gitlog-mcp"],
"env": {
"GITHUB_TOKEN": "your-github-pat"
}
}
}
}Available Tools
gitlog-generate-changelog
Generates a formatted changelog from commit history.
json
{
"repoFullName": "owner/repo",
"fromRef": "v1.0.0",
"toRef": "HEAD"
}