Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/gittensory-mcp/bin/gittensory-mcp.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,11 @@ const STDIO_TOOL_DESCRIPTORS = [
name: "gittensory_get_upstream_drift",
description: "Return the latest cached Gittensor upstream ruleset drift status (stale/drift warnings) for MCP planning.",
},
{
name: "gittensory_get_label_audit",
description:
"Return the repo's label-policy audit (configured-vs-live labels, missing configured labels, suspicious status/source-style labels, and trusted-label-pipeline readiness) from the private Gittensory API.",
},
{
name: "gittensory_preview_local_pr_score",
description: "Inspect local diff metadata and request a private Gittensory scoring preview. No source contents are uploaded.",
Expand Down Expand Up @@ -670,8 +675,7 @@ server.registerTool(
server.registerTool(
"gittensory_get_label_audit",
{
description:
"Return the repo's label-policy audit (configured-vs-live labels, missing configured labels, suspicious status/source-style labels, and trusted-label-pipeline readiness) from the private Gittensory API.",
description: stdioToolDescription("gittensory_get_label_audit"),
inputSchema: ownerRepoShape,
},
async ({ owner, repo }) => {
Expand Down