git-mob-mcp-server 1.0.3 → 1.0.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.
@@ -1,7 +1,12 @@
|
|
1
1
|
import { ResourceTemplate, } from "@modelcontextprotocol/sdk/server/mcp.js";
|
2
2
|
import { getHelp } from "../clients/gitMobClient.js";
|
3
3
|
const name = "git_mob_help";
|
4
|
-
const template = new ResourceTemplate("gitmob://help", {
|
4
|
+
const template = new ResourceTemplate("gitmob://help{?command}", {
|
5
|
+
list: undefined,
|
6
|
+
complete: {
|
7
|
+
command: () => ["setup", "coauthor", "help"],
|
8
|
+
},
|
9
|
+
});
|
5
10
|
const metadata = {
|
6
11
|
description: "Displays general help and usage information for the Git Mob CLI. " +
|
7
12
|
"You can optionally provide a command ('setup', 'coauthor', or 'help') " +
|