CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

gitrama-mcp

gitramallc/gitrama-mcp
HTTP
Summary

Brings Gitrama's AI-powered Git intelligence into any MCP-compatible editor. Exposes 15 tools covering the full development loop: smart commits, branch naming, PR descriptions, code review, and workflow stream management. The diff and review tools are standouts, launching risk-annotated HTML panels with churn rates, coupling context, and contributor data overlaid on every changed file. Results pull from a structural health scan that scores files for continuity risk and boundary entropy. You can stage, commit, push, and switch workflow streams without leaving chat. Runs locally via pip or connects to a hosted endpoint at mcp.gitrama.ai. Best suited for teams already using Gitrama who want to automate Git operations through their AI assistant rather than the command line.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
TransportHTTP
UpdatedMar 23, 2026
View on GitHub

🌿 Gitrama MCP Server

AI-powered Git intelligence for your IDE — smart commits, branch names, PR descriptions, diffs, code review, push, and workflow management.

PyPI Python License: Proprietary smithery badge

What is this?

Gitrama MCP Server exposes Gitrama's CLI as 15 MCP tools that any AI assistant can use. Instead of typing gtr commit in your terminal, your AI assistant calls the tool directly — analyzing your code changes, generating commit messages, suggesting branch names, reviewing code, and more.

Works with: Cursor · Claude Desktop · Claude Code · Windsurf · VS Code · Zed · any MCP-compatible client


What's new in v1.3.2

  • 5 new tools — gitrama_scan, gitrama_diff, gitrama_review, gitrama_status, and gitrama_push
  • Version surfaced from health check — gitrama_health now returns the MCP server version so you can confirm exactly what's running
  • Interactive HTML diff panel — gitrama_diff launches a browser panel with risk-annotated diffs, churn rates, coupling context, and contributor info overlaid on every changed file
  • Push from chat — gitrama_push supports upstream tracking, force-with-lease, and auto-resolves the current branch
  • Remote MCP server — connect from anywhere via https://mcp.gitrama.ai/mcp, no local install required
  • Tool count updated from 10 → 15

Install (< 60 seconds)

Step 1: Install the package

pip install gitrama-mcp

Or with uv:

uv pip install gitrama-mcp

This installs both the MCP server and the gitrama CLI.

Step 2: Connect to your IDE

Cursor

Add to .cursor/mcp.json in your project (or global settings):

{
  "mcpServers": {
    "gitrama": {
      "command": "gitrama-mcp",
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}
Claude Desktop

Add to claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "gitrama": {
      "command": "gitrama-mcp",
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}
Claude Code
claude mcp add gitrama gitrama-mcp
VS Code

Add to .vscode/mcp.json:

{
  "mcpServers": {
    "gitrama": {
      "command": "gitrama-mcp",
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}
Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "gitrama": {
      "command": "gitrama-mcp",
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}
Zed

Add to Zed settings (⌘,):

{
  "context_servers": {
    "gitrama": {
      "command": {
        "path": "gitrama-mcp"
      },
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}
Remote — no local install required

Connect directly to the hosted Gitrama MCP server. Works with Claude.ai, Claude Desktop, Cursor, Windsurf, VS Code, and any MCP-compatible client:

{
  "mcpServers": {
    "gitrama": {
      "url": "https://mcp.gitrama.ai/mcp",
      "env": {
        "GITRAMA_TOKEN": "your_token_here"
      }
    }
  }
}

Or install via Smithery:

smithery mcp add GitramaLLC/gitrama-mcp

Step 3: Done.

Ask your AI: "Commit my staged changes" — and watch it call gitrama_commit.


Tools (15)

Health & Diagnostics

ToolDescription
gitrama_healthCheck AI server health and confirm MCP server version

Repository Intelligence

ToolDescription
gitrama_askAsk any question about your repo — ownership, history, risk, changes
gitrama_scanFull structural health scan — continuity risk, boundary entropy, recurrence patterns
gitrama_statusShow working tree status with AI interpretation

Code Review & Diff

ToolDescription
gitrama_diffRisk-annotated diff with interactive HTML panel — churn, coupling, contributor context
gitrama_reviewAI code review before you push — security, correctness, risk, coupling

Commit Intelligence

ToolDescription
gitrama_commitGenerate an AI commit message for staged changes
gitrama_stage_and_commitStage files + commit in one step
gitrama_unstageRemove files from staging without discarding changes

Branch & Push Management

ToolDescription
gitrama_branchCreate a branch from a natural language description
gitrama_pushPush current branch to remote with upstream and force-with-lease support

PR & Changelog

ToolDescription
gitrama_prGenerate a PR description from branch diff
gitrama_changelogGenerate a changelog between refs

Stream (Workflow) Management

ToolDescription
gitrama_stream_statusShow current workflow stream
gitrama_stream_switchSwitch to a different stream
gitrama_stream_listList all streams in the repo

Tool Details

gitrama_health

Check AI server connectivity and confirm the running MCP server version.

Example prompt: "Run a gitrama health check"

Example output:

✅ AI server is healthy!
   🤖 Model: grok-4.20-reasoning
   🌐 Connected to: https://api.x.ai/v1

🔖 Gitrama MCP Server: v1.3.2

gitrama_scan

Run a full structural health scan of the repository. Scores every file for continuity risk, boundary entropy, and recurrence patterns. Results are cached in last_scan.json for use by gtr diff and gtr review.

Example prompt: "Run a full gitrama scan of my repo"


gitrama_diff

Show a risk-annotated diff of current changes. Opens an interactive HTML browser panel with Gitrama's structural intelligence overlaid — risk scores, churn rates, coupling gaps, and contributor context for every changed file.

Parameters:

ParameterTypeDefaultDescription
targetstring""Branch or commit to diff against
stagedboolfalseDiff staged changes only

Example prompts:

  • "Show me a diff of my staged changes"
  • "Diff my branch against main"

gitrama_review

Run an AI code review on current changes before committing. Returns severity-graded findings — security, correctness, risk, coupling — plus a verdict and suggested commit message.

Parameters:

ParameterTypeDefaultDescription
modestring"staged""staged", "uncommitted", "quick", "full"

Example prompts:

  • "Review my staged changes"
  • "Do a full review of all my uncommitted changes"

gitrama_push

Push the current branch to a remote repository. Uses --force-with-lease for safe force pushes and auto-resolves the current branch if none is specified.

Parameters:

ParameterTypeDefaultDescription
remotestring"origin"Remote to push to
branchstring""Branch to push (default: current branch)
forceboolfalseForce push with --force-with-lease
set_upstreamboolfalseSet upstream tracking branch (-u)

Example prompts:

  • "Push my changes"
  • "Push this branch and set upstream"
  • "Force push the current branch"

gitrama_status

Show the working tree status with AI interpretation of staged, unstaged, and untracked files.

Example prompt: "What's my current git status?"


gitrama_ask

Ask a natural language question about your repository. Gitrama analyzes commit history, file structure, blame data, and diffs to answer.

Parameters:

ParameterTypeDefaultDescription
questionstringrequiredAny question about your repo
streamstring""Optional stream context override
deepboolfalseEnable full repo history access

Example prompts:

  • "Who owns the auth module?"
  • "What's the riskiest file in this repo?"
  • "What changed in the last 3 days?"
  • "Explain the purpose of src/utils/retry.py"

gitrama_commit

Generate an AI-powered commit message for staged changes.

Parameters:

ParameterTypeDefaultDescription
messagestring""Optional custom message (skips AI generation)

Example prompt: "Commit my staged changes"


gitrama_stage_and_commit

Stage files and commit in one step.

Parameters:

ParameterTypeDefaultDescription
filesstring"."Files to stage (. for all, or space-separated paths)
messagestring""Optional custom message

Example prompt: "Stage and commit all my changes"


gitrama_unstage

Remove files from the staging area without discarding changes.

Parameters:

ParameterTypeDefaultDescription
filesstring""Space-separated file paths to unstage
all_filesboolfalseUnstage everything currently staged

Example prompt: "Unstage src/auth.py"


gitrama_branch

Generate an AI-powered branch name from a description and optionally create it.

Parameters:

ParameterTypeDefaultDescription
descriptionstringrequiredWhat you're working on
createbooltrueCreate and switch to the branch

Example prompts:

  • "Create a branch for adding OAuth2 support"
  • "Suggest a branch name for fixing the payment timeout, don't create it"

gitrama_pr

Generate a PR description from the diff between the current branch and base.

Parameters:

ParameterTypeDefaultDescription
basestring""Target branch (default: main/master)

Example prompt: "Write a PR description for this branch"


gitrama_changelog

Generate a changelog between refs.

Parameters:

ParameterTypeDefaultDescription
sincestring""Start ref (tag, branch, hash)
untilstring""End ref (default: HEAD)
formatstring"markdown""markdown" or "json"

Example prompt: "Generate a changelog since v1.1.4"


Stream Tools

ToolParametersExample prompt
gitrama_stream_statusnone"What stream am I on?"
gitrama_stream_switchname, description"Switch to the hotfix stream"
gitrama_stream_listnone"List all my gitrama streams"

The v1.3.2 Workflow

With all 15 tools connected, your full dev loop runs from chat:

describe intent  →  stream switch
write code
ask gitrama what changed  →  diff (HTML panel)
review before push
commit with AI message
push
PR description generated

No terminal. No manual git commands.


Configuration

Environment Variables

VariableDefaultDescription
GITRAMA_TOKEN""Your Gitrama API key
GTR_CWDos.getcwd()Working directory for git operations
GTR_MCP_TRANSPORT"stdio"Transport: "stdio" or "streamable-http"
GTR_MCP_HOST"0.0.0.0"HTTP host (when using streamable-http)
GTR_MCP_PORT"8765"HTTP port (when using streamable-http)

HTTP Transport (for CI/CD)

GTR_MCP_TRANSPORT=streamable-http GTR_MCP_PORT=8765 gitrama-mcp

Then connect your client to http://localhost:8765/mcp.


Requirements

  • Python 3.10+
  • Git installed and in PATH
  • A Gitrama API key or local Ollama instance

Set your API key:

gtr config --key YOUR_API_KEY

Or use a local model:

gtr config --provider ollama --model llama3

Development

git clone https://github.com/GitramaLLC/gitrama-mcp.git
cd gitrama-mcp
pip install -e ".[dev]"

# Test with MCP Inspector
mcp dev src/gitrama_mcp/server.py

License

Proprietary — see LICENSE.


Built by Alfonso Harding · gitrama.ai

🌿