We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bajpainaman/DeltaMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
CLAUDE_CODE_COMMAND.md•1 KiB
# Claude Code - One Command Setup
## Add DeltaMCP Server
Run this command in your terminal:
```bash
claude mcp add delta --transport stdio --env GIT_CONFIG_GLOBAL=~/.gitconfig -- /Users/namanbajpai/DeltaMCP/.venv/bin/python3 /Users/namanbajpai/DeltaMCP/server.py
```
**Replace `/Users/namanbajpai/DeltaMCP` with your actual path!**
To get your path:
```bash
cd /path/to/DeltaMCP && pwd
```
**Note:** This uses the Python from your virtual environment directly (no `uv` needed). If you have `uv` installed and in your PATH, you can use:
```bash
claude mcp add delta --transport stdio --env GIT_CONFIG_GLOBAL=~/.gitconfig -- uv --directory /Users/namanbajpai/DeltaMCP run server.py
```
## Verify It's Added
Check that it's configured:
```bash
claude mcp list
```
You should see `delta` in the list.
## Test It Works
In Claude Code, type:
```
Show me the diff for the last commit
```
Or:
```
Show me the diff for HEAD in CLI mode
```
## Remove If Needed
If you need to remove it:
```bash
claude mcp remove delta
```