use-gfs-mcp

use-gfs-mcp is a skill for Claude Code, Codex from Guepard-Corp/gfs. It costs 30 tokens per session (3,274 once invoked), scanned A, original, MIT.

A connection between an AI coding agent and GFS, a Git-like version-control system for databases. Through MCP, a standard way for applications to expose tools to AI agents, it provides database history and version-management operations.

In plain words
What is it for?
Use it to check database status, create commits and branches, switch versions, and inspect schema history in PostgreSQL or MySQL repositories.
Why use it?
It lets an AI agent inspect and manage database versions without treating the database as an untracked live state. This helps review schema changes and move safely between database branches or commits.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check database status, create commits and branches, switch versions, and inspect schema history in PostgreSQL or MySQL repositories.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/guepard-corp/gfs/use-gfs-mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Guepard-Corp/gfs --skill use-gfs-mcp
Clone the repo
git clone --depth 1 https://github.com/Guepard-Corp/gfs

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for use-gfs-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/guepard-corp/gfs/use-gfs-mcp/github.svg)](https://agentmods.dev/skills/guepard-corp/gfs/use-gfs-mcp)
Your own site
<a href="https://agentmods.dev/skills/guepard-corp/gfs/use-gfs-mcp"><img src="https://agentmods.dev/badge/skills/guepard-corp/gfs/use-gfs-mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for use-gfs-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/guepard-corp/gfs/use-gfs-mcp"><img src="https://agentmods.dev/badge/skills/guepard-corp/gfs/use-gfs-mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,274 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.03274
Opus 5 $0.00015 $0.01637
Sonnet 5 $0.00006 $0.00655
Haiku 4.5 $0.00003 $0.00327

Measured 10d ago against content hash 7907fcb6d60f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

use-gfs-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/use-gfs-mcp/SKILL.md · 463 lines

How it starts

The opening of the file, as written. The whole thing — 463 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GFS MCP Server

GFS provides an MCP (Model Context Protocol) server for AI agent integration, enabling programmatic access to database version control operations including commits, branches, time travel, and schema versioning.

Supported Databases

  • PostgreSQL (versions 13-18)
  • MySQL (versions 8.0-8.1)

Installation

1. Verify GFS CLI is installed

The MCP server requires the GFS CLI to be installed on the host system.

2. Configure MCP Server

Add GFS to your MCP client configuration (e.g., Claude Desktop, custom MCP client). The MCP server runs as: gfs mcp

Configuration requires:

  • Command: Path to gfs binary
  • Args: ["mcp"]
  • Optional: GFS_REPO_PATH environment variable

Quick Start

1. Start MCP Server

The server starts automatically when configured in your MCP client. It provides access to all GFS operations through MCP tools.

2. Check Available Tools

The MCP server exposes 13 tools for database version control operations. All tools accept an optional path parameter to specify repository location.

3. Verify Repository Status

Use the status tool to check repository state, current branch, HEAD commit, and database container status.

Revision References

GFS supports Git-style revision notation in all tools that accept commit references (checkout, show_schema, diff_schema, log):

Basic Formats

  • HEAD - Current commit
  • main - Branch tip (any branch name)
  • abc123def456... - Full commit hash (64 characters)

Tilde Notation (Ancestor References)

Reference ancestor commits using ~ notation:

  • HEAD~1 - Parent of HEAD (previous commit)
  • HEAD~5 - 5th ancestor of HEAD
  • main~3 - 3 commits before main branch tip
  • abc123~2 - 2nd parent of commit abc123
  • HEAD~ - Same as HEAD~1 (defaults to 1)

MCP Tool Usage Examples

// Checkout previous commit
checkout({ revision: "HEAD~1" })

// Compare schema with 5 commits ago
diff_schema({ commit1: "HEAD~5", commit2: "HEAD" })

// View schema from 3 commits back
show_schema({ commit: "main~3" })

// Show ancestor schema
show_schema({ commit: "abc123def456...~2" })

// View log from ancestor to current
log({ from: "HEAD~10", until: "HEAD" })

Read the full file on GitHub · 463 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 463 lines · 30 tokens per session scan A 7907fcb6d60f

Subscribe to this mod's changes

use-gfs-mcp is a skill published in the GitHub repository Guepard-Corp/gfs (156 stars, last pushed 6d ago), licensed MIT. It adds 30 tokens to every session and 3,274 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sql-knowledge

Comprehensive SQL Server and T-SQL development knowledge for queries, stored procedures, and database optimization. Use when working with: (1) T-SQL query writing and optimization, (2) Stored procedure development, (3) Execution plan analysis and indexing, (4) Window functions, CTEs, PIVOT, MERGE, APPLY, (5)…

hmohamed01/claude-code-plugins · 94 tokens

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

postgresql-table-design

Use this skill when designing or reviewing a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features.

wshobson/agents · 37 tokens

sql-optimization-patterns

Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database schemas, or optimizing application performance.

wshobson/agents · 44 tokens

event-store-design

Design and implement event stores for event-sourced systems. Use when building event sourcing infrastructure, choosing event store technologies, or implementing event persistence patterns.

wshobson/agents · 33 tokens

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens