@andrebuzeli/git-mcp 7.2.3 → 7.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/config.js +4 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/config.js
CHANGED
|
@@ -26,8 +26,10 @@ function loadMCPConfig(configPath) {
|
|
|
26
26
|
if (process.env[k] == null) {
|
|
27
27
|
process.env[k] = v;
|
|
28
28
|
}
|
|
29
|
-
// Log
|
|
30
|
-
|
|
29
|
+
// Log to stderr only (stdout is used for MCP protocol)
|
|
30
|
+
if (process.env.DEBUG) {
|
|
31
|
+
console.error(`MCP config: env.${k}=${maskSecret(process.env[k])}`);
|
|
32
|
+
}
|
|
31
33
|
}
|
|
32
34
|
}
|
|
33
35
|
return cfg;
|
package/dist/index.js
CHANGED
|
@@ -75,7 +75,7 @@ async function main() {
|
|
|
75
75
|
// Create MCP Server with STDIO transport
|
|
76
76
|
const server = new index_1.Server({
|
|
77
77
|
name: '@andrebuzeli/git-mcp',
|
|
78
|
-
version: '7.2.
|
|
78
|
+
version: '7.2.4',
|
|
79
79
|
});
|
|
80
80
|
// Register tool list handler
|
|
81
81
|
server.setRequestHandler(types_1.ListToolsRequestSchema, async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@andrebuzeli/git-mcp",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.4",
|
|
4
4
|
"description": "Professional MCP server for Git operations - STDIO UNIVERSAL: works in ANY IDE (Cursor, VSCode, Claude Desktop). Fully autonomous DUAL execution (GitHub + Gitea APIs) with automatic username detection. All tools execute on BOTH providers simultaneously. No manual parameters needed.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|