ai.smithery/Hint-Services-obsidian-github
getCommitHistory
Track the evolution of your Obsidian vault knowledge base by retrieving commit history from GitHub (hoffination/Ben-Personal). See how your notes and ideas have developed over time with detailed diffs.
Remote Hint-Services/obsidian-github-mcp
Other tools also called getCommitHistory?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"days": {
"type": "number",
"maximum": 365,
"minimum": 1,
"description": "Number of days to look back for commits"
},
"page": {
"type": "number",
"default": 0,
"description": "Page number for pagination (0-indexed)"
},
"author": {
"type": "string",
"description": "Filter commits by author username"
},
"maxCommits": {
"type": "number",
"default": 25,
"maximum": 50,
"minimum": 1,
"description": "Maximum number of commits to return"
},
"includeDiffs": {
"type": "boolean",
"default": true,
"description": "Whether to include actual file changes/diffs (default: true)"
}
}
}