@cyanheads/git-mcp-server 2.10.1 → 2.10.3
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/README.md +1 -1
- package/dist/index.js +3 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-11-25/changelog.mdx) [](https://modelcontextprotocol.io/) [](./LICENSE) [](https://github.com/cyanheads/git-mcp-server/issues) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
package/dist/index.js
CHANGED
|
@@ -15335,7 +15335,7 @@ var package_default;
|
|
|
15335
15335
|
var init_package = __esm(() => {
|
|
15336
15336
|
package_default = {
|
|
15337
15337
|
name: "@cyanheads/git-mcp-server",
|
|
15338
|
-
version: "2.10.
|
|
15338
|
+
version: "2.10.3",
|
|
15339
15339
|
mcpName: "io.github.cyanheads/git-mcp-server",
|
|
15340
15340
|
description: "A secure and scalable Git MCP server enabling AI agents to perform comprehensive Git version control operations via STDIO and Streamable HTTP.",
|
|
15341
15341
|
main: "dist/index.js",
|
|
@@ -148456,12 +148456,7 @@ function createMcpToolHandler({
|
|
|
148456
148456
|
});
|
|
148457
148457
|
return {
|
|
148458
148458
|
isError: true,
|
|
148459
|
-
content: [{ type: "text", text: `Error: ${mcpError.message}` }]
|
|
148460
|
-
structuredContent: {
|
|
148461
|
-
code: mcpError.code,
|
|
148462
|
-
message: mcpError.message,
|
|
148463
|
-
data: mcpError.data
|
|
148464
|
-
}
|
|
148459
|
+
content: [{ type: "text", text: `Error: ${mcpError.message}` }]
|
|
148465
148460
|
};
|
|
148466
148461
|
}
|
|
148467
148462
|
};
|
|
@@ -150957,7 +150952,7 @@ var InputSchema27 = exports_external.object({
|
|
|
150957
150952
|
mode: exports_external.enum(["list", "create", "delete"]).default("list").describe("The tag operation to perform."),
|
|
150958
150953
|
tagName: TagNameSchema.optional().describe("Tag name for create/delete operations."),
|
|
150959
150954
|
commit: CommitRefSchema.optional().describe("Commit to tag (default: HEAD for create operation)."),
|
|
150960
|
-
message: exports_external.string().optional().describe("Tag message (creates annotated tag)."),
|
|
150955
|
+
message: exports_external.string().optional().describe("Tag message (creates annotated tag). For release tags, summarize the notable changes."),
|
|
150961
150956
|
annotated: exports_external.boolean().default(false).describe("Create annotated tag. Automatically set to true when message is provided."),
|
|
150962
150957
|
sign: SignSchema,
|
|
150963
150958
|
forceUnsignedOnFailure: exports_external.boolean().default(false).describe("If GPG/SSH signing fails, retry the tag creation without signing instead of failing."),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/git-mcp-server",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.3",
|
|
4
4
|
"mcpName": "io.github.cyanheads/git-mcp-server",
|
|
5
5
|
"description": "A secure and scalable Git MCP server enabling AI agents to perform comprehensive Git version control operations via STDIO and Streamable HTTP.",
|
|
6
6
|
"main": "dist/index.js",
|