Install
$ agentstack add mcp-themkn-gandi-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
gandi-mcp — Gandi LiveDNS MCP Server
[](https://www.npmjs.com/package/@themkn/gandi-mcp) [](./LICENSE)
An MCP server for Gandi LiveDNS. Manage DNS records, list domains, and take zone snapshots — directly from Claude Code or any MCP-compatible client.
What this gives you
- 8 MCP tools:
list_domains,list_records,get_record,add_record,update_record,delete_record,list_snapshots,create_snapshot - Safety by default: every
add/update/deletewrites a timestamped local JSON backup of the full zone before mutating. Configurable. - One-JSON config: no env vars, one file with strict
0600perms
Prerequisites
- A Gandi account
- Node.js 24+
Get a Gandi Personal Access Token
Gandi replaced legacy API keys with Personal Access Tokens (PATs). To create one for gandi-mcp:
- Sign in at admin.gandi.net.
- Top-right menu → User settings → Authentication options (or visit account.gandi.net/security).
- Under Personal Access Tokens, click Create a token.
- Give it a name (e.g.
gandi-mcp) and pick an expiration (max 1 year — Gandi will email you when it nears expiry). - Scope — which domains: pick Specific organizations or Specific domains and select the ones you want this MCP to manage. Don't grant access to the whole account if you don't need it.
- Permissions: enable "Manage domain technical configurations" (covers LiveDNS read + write). If any of your domains are owned by a Gandi organization (not your personal account), also enable "View organization information" so
list_domainscan discover them — otherwise it will silently fall back to your personal-org domains only. Everything else (billing, transfers, etc.) can stay unchecked. - Click Create. Copy the token immediately — Gandi only shows it once. If you miss it, delete and create a new one.
That token is your apiKey value in the config below.
Install
npm install -g @themkn/gandi-mcp
The binary is gandi-mcp regardless of the scoped package name.
Configure
The server reads a JSON config from ~/.gandi-mcp/config.json. Create it with 0600:
mkdir -p ~/.gandi-mcp
chmod 700 ~/.gandi-mcp
cat > ~/.gandi-mcp/config.json -.json`:
```json
{
"domain": "example.com",
"date": "2026-04-24T11:47:03.123Z",
"records": [ /* full zone */ ]
}
Format matches the gandi CLI's backup shape. Disable via "autoBackup": false in config.
Development
git clone git@github.com:themkn/gandi-mcp.git
cd gandi-mcp
pnpm install
pnpm test
pnpm build
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: themkn
- Source: themkn/gandi-mcp
- License: MIT
- Homepage: https://www.npmjs.com/package/@themkn/gandi-mcp
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.