AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcp Hugo Server Go

mcp-jmrgrav-mcp-hugo-server-go · by jmrGrav

Canonical unified MCP server for Hugo sites — anonymous / content.read / content.write / site.admin / system.admin tiers.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add mcp-jmrgrav-mcp-hugo-server-go

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-jmrgrav-mcp-hugo-server-go)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Mcp Hugo Server Go? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

mcp-hugo-server-go

[](go.mod) [](https://github.com/jmrGrav/mcp-hugo-server-go/releases/latest) [](https://github.com/jmrGrav/mcp-hugo-server-go/actions/workflows/ci.yml) [](LICENSE) [](SECURITY.md) [](https://modelcontextprotocol.io) [](https://chatgpt.com/) [](https://claude.ai) [](https://isitagentready.com/www.arleo.eu)

Canonical unified MCP server for Hugo sites.

Public endpoint: https://mcp.arleo.eu/mcp

What it does

mcp-hugo-server-go exposes a Hugo site through the Model Context Protocol with public discovery, OAuth-backed scopes, and strict separation between read, write, and admin operations.

It is the unified successor of:

  • hugo-public-mcp for public discovery, OAuth, and auth.md
  • hugo-mcp-go for content and administration tools
  • mcp-runtime-go for MCP transport/runtime behavior

Scope model

  • anonymous: public, safe, read-only discovery
  • content.read: richer read-only access
  • content.write: create, update, and delete operations
  • site.admin: build, site-management, integrity, and diagnostic operations

Legacy clients may still send mcp as a scope. The server accepts it as a deprecated compatibility alias for content.read only. Legacy clients may still send system.admin; the server accepts it as a compatibility alias for site.admin, but it is not advertised as a canonical scope.

Tool inventory

The current tool inventory is documented in [docs/tools.md](docs/tools.md) and should be treated as the source of truth for scope mapping and tool naming.

Security model

  • Anonymous callers only see public read-only tools.
  • OAuth bearer tokens are required for non-public tiers.
  • content.write and site.admin are never exposed to anonymous callers.
  • The legacy mcp alias is accepted for compatibility, but it is not advertised as canonical.

Claude and MCP

Claude Desktop and Claude.ai can connect directly to the public MCP endpoint above.

The server card and OAuth discovery advertise canonical scopes only:

  • content.read
  • content.write
  • site.admin

Validation

The repository is expected to pass:

go test ./...
go test -race ./...
go vet ./...
govulncheck ./...
gitleaks detect --no-banner --redact --source .

Release flow

Production promotion is intentionally split into three explicit stages:

  1. Merge to main and wait for CI to go green.
  2. Run Deploy to Production for the exact main commit you want live.
  3. Run Release only after production deployment succeeds. The release workflow refuses to publish unless:
  • the requested ref resolves to the current origin/main HEAD;
  • CHANGELOG.md contains the requested version;
  • README.md still uses dynamic latest-release metadata;
  • the target SHA already has a successful production deployment record.

Project lineage

mcp-hugo-server-go is the canonical unified successor of those repositories.

Architecture

mcp.arleo.eu
├── anonymous       public discovery and safe read-only tools
├── content.read    richer read-only content access
├── content.write   content creation and editing
└── site.admin      build, site, integrity, and diagnostic operations

The MCP transport is streamable HTTP at /mcp.

Security contact

To report a vulnerability, set security_contact in your server config (e.g., security_contact: "mailto:security@example.com"). This populates /.well-known/security.txt per RFC 9116. The server requires Contact and Expires — Canonical is set automatically from site_url (or oauth.issuer if site_url is blank).

Agent identity flow

Agents authenticate via the device-flow-like endpoint at /agent/identity/verify:

  1. Agent POSTs to /agent/identity with {"type":"anonymous"} → receives claim_token + verification_uri.
  2. Agent POSTs to /agent/identity/claim with the claim_token → initiates claim.
  3. Operator visits the verification_uri (or POSTs to /agent/identity/verify) with a site.admin Bearer token and the claim_token to approve.
  4. Agent exchanges its identity_assertion at /token (grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer) → receives a content.read Bearer token.

The POST to /agent/identity/verify requires operator authentication via the Authorization: Bearer header (or admin_token form field for browser submissions).

API reference

| Endpoint | Method | Description | |---|---|---| | /mcp | GET/POST/DELETE | MCP Streamable HTTP transport | | /.well-known/oauth-authorization-server | GET | OAuth 2.0 authorization server metadata (RFC 8414) | | /.well-known/oauth-protected-resource | GET | Protected resource metadata (RFC 9728) | | /.well-known/mcp/server-card.json | GET | MCP server card | | /.well-known/mcp.json | GET | MCP server card (alias) | | /.well-known/agent.json | GET | Agent card (Google A2A schema) | | /.well-known/security.txt | GET | Security contact (RFC 9116) | | /robots.txt | GET | Robots exclusion | | /llms.txt | GET | LLM discovery | | /auth.md | GET | Authentication guide | | /metrics | GET | Prometheus metrics | | /register | POST | OAuth dynamic client registration | | /authorize | GET/POST | OAuth authorization endpoint | | /token | POST | OAuth token endpoint | | /agent/identity | POST | Register agent identity | | /agent/identity/claim | POST | Initiate agent claim | | /agent/identity/verify | GET/POST | Operator agent approval page | | /agent/event/notify | POST | Agent event notifications |

Documentation

  • [Operator guide](docs/operator-guide.md)
  • [AgentReady 100% HowTo](docs/agent-ready-howto.md)
  • [Release checklist](docs/release-checklist.md)
  • [Staging runbook](docs/staging-runbook.md)
  • [Tool inventory](docs/tools.md)
  • [Security policy](SECURITY.md)
  • Operations wiki

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.