Changelog
v1.0.0Project updates and changelog
changelogupdatesreleaseshistory
Server Information
- Server ID
- changelog
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A changelog tracking updates across all projects. Features filtering by project and type. ## Features - Update timeline - Project filtering - Type categorization - Date range filtering
Available Tools
changelog_get_changes
Get all changes
Input Schema
{
"type": "object",
"properties": {}
}changelog_get_by_project
Filter by project
Input Schema
{
"type": "object",
"properties": {
"project": {
"type": "string"
}
}
}changelog_get_by_date
Filter by date range
Input Schema
{
"type": "object",
"properties": {
"start": {
"type": "string"
},
"end": {
"type": "string"
}
}
}changelog_get_by_type
Filter by change type
Input Schema
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"feature",
"fix",
"improvement",
"breaking"
]
}
}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"changelog": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-changelog-frontend.vercel.app"
}
}
}
}