- Home
- MCP servers
- GitStandup
GitStandup
- javascript
4
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"muba00-gitstandup": {
"command": "npx",
"args": [
"-y",
"gitstandup-mcp"
]
}
}
}You can run a lightweight MCP server that aggregates your git commits across multiple repositories and outputs concise standup notes for AI assistants. It automatically filters by your git user, looks back over a configurable time window, and presents clean summaries that focus on meaningful code changes and tests, making daily standups faster and more consistent.
How to use
You interact with the server through an MCP client. First, configure the MCP by pointing it to your repositories, and then ask your AI assistant to generate standup notes. Common workflows include asking for notes from the last day, the last 48 hours, or from a specific set of repositories. You can also request standup notes for a custom time window.
How to install
Prerequisites: You need Node.js and npm installed on your system.
Install the MCP server and run it using a package manager command shown in the quick start.
# Using npx (no installation needed)
npx -y gitstandup-mcp
# Or install globally
npm install -g gitstandup-mcp
Configuration and usage notes
The server remembers your configured repositories in your home directory for persistence. You can add repositories to the configuration and later remove them as needed.
{
"repos": ["/Users/you/projects/project1", "/Users/you/projects/project2"]
}
Using with Claude Desktop or VS Code
If you use Claude Desktop, configure the MCP server by adding an entry that runs the MCP via npx. The following example shows how to reference the server from Claude’s config.
{
"mcpServers": {
"gitstandup": {
"command": "npx",
"args": ["-y", "gitstandup-mcp"]
}
}
}
Core tools you can use with the MCP server
Your AI assistant can perform the following actions through the MCP server: generate_standup, add_repos, list_repos, and remove_repos.
Available tools
generate_standup
Generates standup notes from configured repositories within a specified time window.
add_repos
Adds one or more git repository paths to the MCP configuration.
list_repos
Lists all repositories currently configured in the MCP server.
remove_repos
Removes one or more repository paths from the MCP configuration.